diff options
author | Pierre-Louis Dubouilh <[email protected]> | 2017-06-24 17:12:07 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-07-14 10:47:21 +0200 |
commit | c4750c85961777e6ab00b46fb12b1ba0253796d5 (patch) | |
tree | fc35d5868025853bf7406cb59413ca7c2182a863 /src/core | |
parent | b1fa86962a0a264cb0f1d05212fa855474a2350a (diff) | |
download | marco-c4750c85961777e6ab00b46fb12b1ba0253796d5.tar.bz2 marco-c4750c85961777e6ab00b46fb12b1ba0253796d5.tar.xz |
Allow use of arrows while in alt+tab popup
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/keybindings.c | 9 |
1 files changed, 9 insertions, 0 deletions
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, |