diff --git a/src/Miscellaneous/Keybinds.coffee b/src/Miscellaneous/Keybinds.coffee index 51a5e1e6b..1c6c0d70d 100644 --- a/src/Miscellaneous/Keybinds.coffee +++ b/src/Miscellaneous/Keybinds.coffee @@ -101,16 +101,19 @@ Keybinds = Index.cycleSortType() # Thread Navigation when Conf['Next thread'] - return if g.VIEW isnt 'index' + return if g.VIEW isnt 'index' or Conf['Index Mode'] is 'catalog' Nav.scroll +1 when Conf['Previous thread'] - return if g.VIEW isnt 'index' + return if g.VIEW isnt 'index' or Conf['Index Mode'] is 'catalog' Nav.scroll -1 when Conf['Expand thread'] + return if g.VIEW isnt 'index' or Conf['Index Mode'] is 'catalog' ExpandThread.toggle thread when Conf['Open thread'] + return if g.VIEW isnt 'index' or Conf['Index Mode'] is 'catalog' Keybinds.open thread when Conf['Open thread tab'] + return if g.VIEW isnt 'index' or Conf['Index Mode'] is 'catalog' Keybinds.open thread, true # Reply Navigation when Conf['Next reply']