terminal: Ignore more modifier keys

Don't want these to leak into the terminal.
This commit is contained in:
Kristian Høgsberg 2012-06-22 12:18:56 -04:00
parent b24ab806bf
commit 22fbcf7183

View file

@ -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: