Skip to content

KEY_DOWN event not sent for TAB while holding LEFT_CONTROL on OSX #1227

@keenanwoodall

Description

@keenanwoodall

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:

  1. Press Left Control down
  2. Press Tab down
  3. Release Tab
  4. Release Left Control
    Logs:
DOWN LEFT_CONTROL
UP TAB
UP LEFT_CONTROL

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

Status

Done

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions