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);