diff --git a/src/General/Config.coffee b/src/General/Config.coffee index a31444595..5345dd84f 100644 --- a/src/General/Config.coffee +++ b/src/General/Config.coffee @@ -189,8 +189,8 @@ Config = 'Previous page': ['Left', 'Jump to the previous page.'] 'Search form': ['Ctrl+Alt+s', 'Focus the search field on the board index.'] 'Paged mode': ['Ctrl+1', 'Sets the index mode to paged.'] - 'Catalog mode': ['Ctrl+2', 'Sets the index mode to catalog.'] - 'All pages mode': ['Ctrl+3', 'Sets the index mode to all threads.'] + 'All pages mode': ['Ctrl+2', 'Sets the index mode to all threads.'] + 'Catalog mode': ['Ctrl+3', 'Sets the index mode to catalog.'] 'Cycle sort type': ['Ctrl+x', 'Cycle through index sort types.'] # Thread Navigation 'Next thread': ['Down', 'See next thread.'] diff --git a/src/Miscellaneous/Keybinds.coffee b/src/Miscellaneous/Keybinds.coffee index c5b0347eb..8bb3e466b 100644 --- a/src/Miscellaneous/Keybinds.coffee +++ b/src/Miscellaneous/Keybinds.coffee @@ -91,12 +91,12 @@ Keybinds = when Conf['Paged mode'] return unless g.VIEW is 'index' and Conf['Index Mode'] isnt 'paged' Index.setIndexMode 'paged' - when Conf['Catalog mode'] - return unless g.VIEW is 'index' and Conf['Index Mode'] isnt 'catalog' - Index.setIndexMode 'catalog' when Conf['All pages mode'] return unless g.VIEW is 'index' and Conf['Index Mode'] isnt 'all pages' Index.setIndexMode 'all pages' + when Conf['Catalog mode'] + return unless g.VIEW is 'index' and Conf['Index Mode'] isnt 'catalog' + Index.setIndexMode 'catalog' when Conf['Cycle sort type'] Index.cycleSortType() # Thread Navigation