Change ordering to be the same as the dropdown.

This commit is contained in:
ahodesuka 2014-02-12 02:21:08 -06:00
parent 1c47e1c197
commit c97112d0ee
2 changed files with 5 additions and 5 deletions

View File

@ -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.']

View File

@ -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