1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 15:25:59 +00:00

properly return out of handled hotkey events

This commit is contained in:
Andrew Dolgov
2012-12-28 15:46:49 +04:00
parent 0b2f8843e5
commit 4ba1f8bbdb
2 changed files with 44 additions and 44 deletions

View File

@@ -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;