1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 13:05:55 +00:00

fix g t hotkey not working

This commit is contained in:
Andrew Dolgov
2011-04-19 16:08:00 +04:00
parent 5300354848
commit e31ed61af3

View File

@@ -960,8 +960,8 @@ function hotkey_handler(e) {
return false; return false;
} }
if (keycode == 84 && shift_key) { // T if (keycode == 84) { // t
toggleTags(); displayDlg("printTagCloud");
return false; return false;
} }
} }