From 6c80fe5ca935cd14ab69841c1a02090ffac99f77 Mon Sep 17 00:00:00 2001 From: Darren Date: Sat, 27 Oct 2012 23:11:04 +0100 Subject: [PATCH] Meta key ignored on global focus for OSX --- client/assets/dev/view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.25.1