mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-05-01 02:07:58 +02:00
terminal: Ignore more modifier keys
Don't want these to leak into the terminal.
This commit is contained in:
parent
b24ab806bf
commit
22fbcf7183
1 changed files with 6 additions and 0 deletions
|
|
@ -2176,6 +2176,12 @@ key_handler(struct window *window, struct input *input, uint32_t time,
|
|||
case XKB_KEY_Control_R:
|
||||
case XKB_KEY_Alt_L:
|
||||
case XKB_KEY_Alt_R:
|
||||
case XKB_KEY_Meta_L:
|
||||
case XKB_KEY_Meta_R:
|
||||
case XKB_KEY_Super_L:
|
||||
case XKB_KEY_Super_R:
|
||||
case XKB_KEY_Hyper_L:
|
||||
case XKB_KEY_Hyper_R:
|
||||
break;
|
||||
|
||||
case XKB_KEY_Insert:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue