Pass through all esc + modifier combinations since they arent generally used in macOS
This commit is contained in:
parent
85db87a121
commit
820fb6dda9
1 changed files with 2 additions and 2 deletions
|
|
@ -492,8 +492,8 @@ - (void)render_frame_received:(id)displayIDAsID
|
|||
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…
Reference in a new issue