diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index ce0ba47e1..a90eb51a0 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -284,10 +284,10 @@ 'Backlinks Position': ['default', 'The position of backlinks in relation to the post.', ['default', 'lower left', 'lower right']], 'Filtered Backlinks': [true, 'Hide backlinks to filtered posts.'], 'Force Reply Break': [false, 'Force replies to occupy their own line and not be adjacent to the OP image.'], - 'Fit Width Replies': [true, 'Replies fit the entire width of the page.'], - 'Indent Replies': [false, 'Indent posts under the OP.'], + 'Fit Width Replies': [false, 'Replies fit the entire width of the page.'], + 'Indent Replies': [true, 'Indent posts under the OP.'], 'Hide Delete UI': [false, 'Hides vanilla report and delete functionality and UI. This does not affect Appchan\'s Menu functionality.'], - 'Post Spacing': ['2', 'The amount of space between replies.', 'text'], + 'Post Spacing': ['3', 'The amount of space between replies.', 'text'], 'Vertical Post Padding': ['5', 'The vertical padding around post content of replies.', 'text'], 'Horizontal Post Padding': ['20', 'The horizontal padding around post content of replies.', 'text'], 'Hide Horizontal Rules': [false, 'Hides lines between threads.'], diff --git a/builds/crx/script.js b/builds/crx/script.js index 1ad646a09..182233899 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -259,10 +259,10 @@ 'OP Background': [false, 'Adds a border and background color to the OP Post, as if it were a reply.'], 'Backlinks Position': ['default', 'The position of backlinks in relation to the post.', ['default', 'lower left', 'lower right']], 'Filtered Backlinks': [true, 'Hide backlinks to filtered posts.'], - 'Fit Width Replies': [true, 'Replies fit the entire width of the page.'], - 'Indent Replies': [false, 'Indent posts under the OP.'], + 'Fit Width Replies': [false, 'Replies fit the entire width of the page.'], + 'Indent Replies': [true, 'Indent posts under the OP.'], 'Hide Delete UI': [false, 'Hides vanilla report and delete functionality and UI. This does not affect Appchan\'s Menu functionality.'], - 'Post Spacing': ['2', 'The amount of space between replies.', 'text'], + 'Post Spacing': ['3', 'The amount of space between replies.', 'text'], 'Vertical Post Padding': ['5', 'The vertical padding around post content of replies.', 'text'], 'Horizontal Post Padding': ['20', 'The horizontal padding around post content of replies.', 'text'], 'Hide Horizontal Rules': [false, 'Hides lines between threads.'], diff --git a/src/General/Config.coffee b/src/General/Config.coffee index 6144350b5..c6d0197a1 100644 --- a/src/General/Config.coffee +++ b/src/General/Config.coffee @@ -535,11 +535,11 @@ Config = ] <% } %> 'Fit Width Replies': [ - true + false 'Replies fit the entire width of the page.' ] 'Indent Replies': [ - false + true 'Indent posts under the OP.' ] 'Hide Delete UI': [ @@ -547,7 +547,7 @@ Config = 'Hides vanilla report and delete functionality and UI. This does not affect Appchan\'s Menu functionality.' ] 'Post Spacing': [ - '2' + '3' 'The amount of space between replies.' 'text' ]