From: Andrew Dolgov Date: Tue, 19 Apr 2011 12:08:00 +0000 (+0400) Subject: fix g t hotkey not working X-Git-Tag: 1.5.3~21 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=e31ed61af333d231ca6b437c93be89259cb3706a;p=tt-rss.git fix g t hotkey not working --- diff --git a/tt-rss.js b/tt-rss.js index 99db4dab..2d657bca 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -960,8 +960,8 @@ function hotkey_handler(e) { return false; } - if (keycode == 84 && shift_key) { // T - toggleTags(); + if (keycode == 84) { // t + displayDlg("printTagCloud"); return false; } }