don't block processing of keys q and Q
This commit is contained in:
parent
abe6d9346e
commit
36cebe0f8d
1 changed files with 2 additions and 2 deletions
|
@ -1095,14 +1095,14 @@ function hotkey_handler(e) {
|
|||
if (keycode == 81 && shift_key) { // Q
|
||||
if (typeof catchupAllFeeds != 'undefined') {
|
||||
catchupAllFeeds();
|
||||
return false;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (keycode == 81) { // q
|
||||
if (getActiveFeedId()) {
|
||||
catchupCurrentFeed();
|
||||
return false;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue