filter out apple command keys

This commit is contained in:
daboe01
2015-06-11 23:03:44 +02:00
parent b868f37da5
commit 7a875f2db4
+1 -1
View File
@@ -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;