summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/tt-rss.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index 244bbd8ed..afbc775f2 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -893,7 +893,8 @@ function hotkey_handler(e) {
cmdline.innerHTML = keychar;
Element.show(cmdline);
- return true;
+ e.stopPropagation();
+ return false;
}
Element.hide(cmdline);
@@ -923,6 +924,7 @@ function hotkey_handler(e) {
if (action != null) {
action();
+ e.stopPropagation();
return false;
}
}