From 1a9a5cb30533dbb3aa5b8b1455ed6cf28815689f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Grabovsk=C3=BD?= Date: Wed, 10 Feb 2016 18:32:55 +0100 Subject: [PATCH] Add a keybind for refreshing thread watcher --- src/General/Config.coffee | 4 ++++ src/Miscellaneous/Keybinds.coffee | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/General/Config.coffee b/src/General/Config.coffee index a715f63cb..0f1329c5f 100644 --- a/src/General/Config.coffee +++ b/src/General/Config.coffee @@ -857,6 +857,10 @@ Config = 'r' 'Update the thread / refresh the index.' ] + 'Update thread watcher': [ + 'Shift+r' + 'Manually refresh thread watcher.' + ] # Images 'Expand image': [ 'Shift+e' diff --git a/src/Miscellaneous/Keybinds.coffee b/src/Miscellaneous/Keybinds.coffee index dc62900d3..4d540856a 100644 --- a/src/Miscellaneous/Keybinds.coffee +++ b/src/Miscellaneous/Keybinds.coffee @@ -94,6 +94,8 @@ Keybinds = when Conf['Watch'] return unless thread ThreadWatcher.toggle thread + when Conf['Update thread watcher'] + ThreadWatcher.buttonFetchAll() # Images when Conf['Expand image'] return unless ImageExpand.enabled and threadRoot