From: Darren Date: Sat, 27 Oct 2012 22:11:04 +0000 (+0100) Subject: Meta key ignored on global focus for OSX X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=6c80fe5ca935cd14ab69841c1a02090ffac99f77;p=KiwiIRC.git Meta key ignored on global focus for OSX --- diff --git a/client/assets/dev/view.js b/client/assets/dev/view.js index e00421d..d140cb3 100644 --- a/client/assets/dev/view.js +++ b/client/assets/dev/view.js @@ -921,7 +921,7 @@ kiwi.view.Application = Backbone.View.extend({ // Globally shift focus to the command input box on a keypress setKeyFocus: function (ev) { // If we're copying text, don't shift focus - if (ev.ctrlKey || ev.altKey) { + if (ev.ctrlKey || ev.altKey || ev.metaKey) { return; }