In the app event callback I'm not receiving a key down event for the Tab key on my m1 macbook while the Control key is held. The KEY_UP event does fire, just not the KEY_DOWN. Is this just an OSX quirk?
case .KEY_DOWN: {
log.debug("DOWN", event.key_code)
}
case .KEY_UP: {
log.debug("UP", event.key_code)
}
Steps:
- Press Left Control down
- Press Tab down
- Release Tab
- Release Left Control
Logs:
DOWN LEFT_CONTROL
UP TAB
UP LEFT_CONTROL
In the app event callback I'm not receiving a key down event for the Tab key on my m1 macbook while the Control key is held. The KEY_UP event does fire, just not the KEY_DOWN. Is this just an OSX quirk?
Steps:
Logs: