From c4750c85961777e6ab00b46fb12b1ba0253796d5 Mon Sep 17 00:00:00 2001 From: Pierre-Louis Dubouilh Date: Sat, 24 Jun 2017 17:12:07 +0200 Subject: Allow use of arrows while in alt+tab popup --- src/core/keybindings.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/core/keybindings.c b/src/core/keybindings.c index 5eec52d0..e764a4e7 100644 --- a/src/core/keybindings.c +++ b/src/core/keybindings.c @@ -2219,6 +2219,15 @@ process_tab_grab (MetaDisplay *display, break; } + /* Allow use of arrows while in window switching mode */ + if (event->xkey.keycode == 114) + key_used = TRUE; + else if (event->xkey.keycode == 113) + { + key_used = TRUE; + backward = TRUE; + } + if (key_used) { meta_topic (META_DEBUG_KEYBINDINGS, -- cgit v1.2.1