mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-08 11:47:14 +00:00
filter out apple command keys
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user