From c17802891e0fcbc3d3edb1b3b0530f8056d61de9 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 18 May 2008 04:54:49 +0100 Subject: hotkeys: change f c and f C to q and Q --- help/3.php | 4 ++-- tt-rss.js | 14 ++++++++++++++ 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/help/3.php b/help/3.php index 0e20a8cf0..633f5c903 100644 --- a/help/3.php +++ b/help/3.php @@ -41,8 +41,8 @@ f a f s f e - f c - f C + q + Q

diff --git a/tt-rss.js b/tt-rss.js index 3b16e13f8..587ea198e 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -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 */ -- cgit v1.2.3