1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-21 10:01:29 +00:00

hotkeys: change f c and f C to q and Q

This commit is contained in:
Andrew Dolgov
2008-05-18 04:54:49 +01:00
parent eec498c3d5
commit c17802891e
2 changed files with 16 additions and 2 deletions

View File

@@ -1092,6 +1092,20 @@ function hotkey_handler(e) {
}
}
if (keycode == 81 && shift_key) { // Q
if (typeof catchupAllFeeds != 'undefined') {
catchupAllFeeds();
return false;
}
}
if (keycode == 81) { // q
if (getActiveFeedId()) {
catchupCurrentFeed();
return false;
}
}
}
/* Prefix f */