From 46b433933e2a8c59810c964b0a889d337758b7a2 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 5 May 2017 11:46:16 +0300 Subject: [PATCH] hotkey_handler: one more tiny tweak --- js/tt-rss.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/tt-rss.js b/js/tt-rss.js index c3a5a5fd..c51e25db 100644 --- a/js/tt-rss.js +++ b/js/tt-rss.js @@ -860,8 +860,6 @@ function hotkey_handler(e) { keycode = e.which; } - var keychar = String.fromCharCode(keycode).toLowerCase(); - if (keycode == 27) { // escape hotkey_prefix = false; } @@ -870,6 +868,7 @@ function hotkey_handler(e) { if (keycode == 17) return; // ignore lone ctrl var hotkeys = getInitParam("hotkeys"); + var keychar = String.fromCharCode(keycode).toLowerCase(); if (!hotkey_prefix && hotkeys[0].indexOf(keychar) != -1) { -- 2.39.2