From 7a875f2db42067f3f60accca46bfee417f5541fd Mon Sep 17 00:00:00 2001 From: daboe01 Date: Thu, 11 Jun 2015 23:03:44 +0200 Subject: [PATCH] filter out apple command keys --- AppKit/CPTextView/CPTextView.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/CPTextView/CPTextView.j b/AppKit/CPTextView/CPTextView.j index defaf10d6..48f30234a 100644 --- a/AppKit/CPTextView/CPTextView.j +++ b/AppKit/CPTextView/CPTextView.j @@ -2110,7 +2110,7 @@ var _CPCopyPlaceholder = '-'; { // filter out the shift-up and friends used to access the deadkeys // fixme: e.which is depreciated(?) -> find a better way to identify the modifier-keyups - if (e.which < 27) + if (e.which < 27 || e.which == 91 || e.which == 93) // include apple command keys return; _CPNativeInputFieldKeyUpCalled = YES;