From e53cbc335fe83af73a1ee02bf731814d18d51001 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Sat, 22 Nov 2014 21:26:25 -0800 Subject: [PATCH] Fix console errors from Fappe/Werk Tyme keybinds when disabled. --- src/Miscellaneous/Keybinds.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Miscellaneous/Keybinds.coffee b/src/Miscellaneous/Keybinds.coffee index 08b4fd8bb..e36bec682 100755 --- a/src/Miscellaneous/Keybinds.coffee +++ b/src/Miscellaneous/Keybinds.coffee @@ -95,10 +95,10 @@ Keybinds = return if g.VIEW is 'catalog' Gallery.cb.toggle() when Conf['fappeTyme'] - return if g.VIEW is 'catalog' + return if !Conf['Fappe Tyme'] or g.VIEW is 'catalog' or g.BOARD is 'f' FappeTyme.cb.toggle.call {name: 'fappe'} when Conf['werkTyme'] - return if g.VIEW is 'catalog' + return if !Conf['Werk Tyme'] or g.VIEW is 'catalog' or g.BOARD is 'f' FappeTyme.cb.toggle.call {name: 'werk'} # Board Navigation when Conf['Front page']