Wrong virtual keycode in WindowEvent from Alt key while holding Shift on X11 #1656
Labels
B - bug
Dang, that shouldn't have happened
C - needs discussion
Direction must be ironed out
DS - x11
Platform:
X11 on Linux
Steps to reproduce:
cargo run --example window | grep KeyboardInput
Expected result:
A
WindowEvent
withvirtual_keycode: Some(LAlt)
Actual result:
A
WindowEvent
withvirtual_keycode: None
The below output is from the input sequence:
press LShift, press LAlt, release LShift, release LAlt
Note that the
virtual_keycode
inDeviceEvent
is correct. OnlyWindowEvent
is affected. The same problem also happens if I hold RShift instead of LShift.The text was updated successfully, but these errors were encountered: