summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/tt-rss.js b/tt-rss.js
index d917b6dc7..d5abfcdda 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -1001,10 +1001,12 @@ function hotkey_handler(e) {
if (keycode == 16) return; // ignore lone shift
- if ((keycode == 70 || keycode == 67 || keycode == 71) && !hotkey_prefix) {
+ if ((keycode == 70 || keycode == 67 || keycode == 71 ||
+ keycode == 224 || keycode == 91) && !hotkey_prefix) {
+
hotkey_prefix = keycode;
debug("KP: PREFIX=" + keycode + " CHAR=" + keychar);
- return;
+ return true;
}
if (Element.visible("hotkey_help_overlay")) {