summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
Diffstat (limited to 'prefs.js')
-rw-r--r--prefs.js9
1 files changed, 1 insertions, 8 deletions
diff --git a/prefs.js b/prefs.js
index 42f51087d..556c71dbb 100644
--- a/prefs.js
+++ b/prefs.js
@@ -323,8 +323,6 @@ function editUser(id, event) {
try {
if (!event || !event.ctrlKey) {
- disableHotkeys();
-
notify_progress("Loading, please wait...");
selectTableRows('prefUserList', 'none');
@@ -358,8 +356,6 @@ function editFilter(id, event) {
if (!event || !event.ctrlKey) {
- disableHotkeys();
-
notify_progress("Loading, please wait...");
selectTableRows('prefFilterList', 'none');
@@ -391,8 +387,6 @@ function editFeed(feed, event) {
if (event && !event.ctrlKey) {
- disableHotkeys();
-
notify_progress("Loading, please wait...");
// selectTableRows('prefFeedList', 'none');
@@ -963,8 +957,6 @@ function editSelectedFeeds() {
notify("");
- disableHotkeys();
-
notify_progress("Loading, please wait...");
var query = "?op=pref-feeds&subop=editfeeds&ids=" +
@@ -1271,6 +1263,7 @@ function pref_hotkey_handler(e) {
}
if (keycode == 16) return; // ignore lone shift
+ if (keycode == 17) return; // ignore lone ctrl
if ((keycode == 67 || keycode == 71) && !hotkey_prefix) {
hotkey_prefix = keycode;