summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index d30e6bee8..8f58f3536 100644
--- a/functions.js
+++ b/functions.js
@@ -347,6 +347,12 @@ function hotkey_handler(e) {
}
}
+ if (keycode == 81 && shift_key) { // shift + q
+ if (typeof catchupAllFeeds != 'undefined') {
+ return catchupAllFeeds();
+ }
+ }
+
if (typeof localHotkeyHandler != 'undefined') {
try {
return localHotkeyHandler(e);