From: Andrew Dolgov Date: Fri, 5 May 2017 08:33:43 +0000 (+0300) Subject: hotkey_handler: return true on prefix handled X-Git-Tag: 17.12~195 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=0ae7de6d91a5a0bfbb6a41e8aa2c425f2b38fedb;p=tt-rss.git hotkey_handler: return true on prefix handled --- diff --git a/js/tt-rss.js b/js/tt-rss.js index afbc775f..4830fd43 100644 --- a/js/tt-rss.js +++ b/js/tt-rss.js @@ -894,7 +894,9 @@ function hotkey_handler(e) { Element.show(cmdline); e.stopPropagation(); - return false; + + // returning false here literally disables ctrl-c in browser lol (because C is a valid prefix) + return true; } Element.hide(cmdline);