summaryrefslogtreecommitdiff
path: root/js/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-12-28 15:46:49 +0400
committerAndrew Dolgov <[email protected]>2012-12-28 15:46:49 +0400
commit4ba1f8bbdb892be52bd9fd236ea8b941524882a5 (patch)
treed4a7c5878b7e1e04830c745639b20095c0a075c4 /js/prefs.js
parent0b2f8843e5938232d07c908e45aa97f845762823 (diff)
properly return out of handled hotkey events
Diffstat (limited to 'js/prefs.js')
-rw-r--r--js/prefs.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/prefs.js b/js/prefs.js
index a193e1262..3f569a644 100644
--- a/js/prefs.js
+++ b/js/prefs.js
@@ -1077,13 +1077,13 @@ function pref_hotkey_handler(e) {
switch (hotkey_action) {
case "feed_subscribe":
quickAddFeed();
- return true;
+ return false;
case "create_label":
addLabel();
- return true;
+ return false;
case "create_filter":
quickAddFilter();
- return true;
+ return false;
case "help_dialog":
//helpDialog("prefs");
return false;