From 36cebe0f8da738414e0256f433e9422f25b79605 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 19 May 2008 07:47:53 +0100 Subject: [PATCH] don't block processing of keys q and Q --- tt-rss.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tt-rss.js b/tt-rss.js index 247dca2a2..57315b4e5 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -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; } }