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;