mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 23:25:57 +00:00
don't block processing of keys q and Q
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user