From 4c17333f53d20862c2bcc9df71c7106e43672b62 Mon Sep 17 00:00:00 2001 From: Mayhem Date: Fri, 13 Jun 2014 01:42:45 +0200 Subject: [PATCH] Fix #1669. --- src/Miscellaneous/Keybinds.coffee | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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']