From 22fbcf718359b8dcbf6bca6d6c2373b6a9f853f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20H=C3=B8gsberg?= Date: Fri, 22 Jun 2012 12:18:56 -0400 Subject: [PATCH] terminal: Ignore more modifier keys Don't want these to leak into the terminal. --- clients/terminal.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/clients/terminal.c b/clients/terminal.c index e0f54bda..457756d6 100644 --- a/clients/terminal.c +++ b/clients/terminal.c @@ -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: