Pass through all esc + modifier combinations since they arent generally used in macOS
This commit is contained in:
parent
85db87a121
commit
820fb6dda9
@ -492,8 +492,8 @@ is_modified_special_key(NSEvent *event, NSEventModifierFlags modifierFlags) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
// ctrl+esc and cmd+esc
|
||||
if (ch == 0x1b && (modifierFlags == NSEventModifierFlagCommand || modifierFlags == NSEventModifierFlagControl)) return true;
|
||||
// ctrl+whatever+esc and cmd+whatever+esc
|
||||
if (ch == 0x1b && (modifierFlags & (NSEventModifierFlagCommand | NSEventModifierFlagControl))) return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user