summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre-Louis Dubouilh <[email protected]>2017-06-24 17:12:07 +0200
committerraveit65 <[email protected]>2017-07-14 10:47:21 +0200
commitc4750c85961777e6ab00b46fb12b1ba0253796d5 (patch)
treefc35d5868025853bf7406cb59413ca7c2182a863
parentb1fa86962a0a264cb0f1d05212fa855474a2350a (diff)
downloadmarco-c4750c85961777e6ab00b46fb12b1ba0253796d5.tar.bz2
marco-c4750c85961777e6ab00b46fb12b1ba0253796d5.tar.xz
Allow use of arrows while in alt+tab popup
-rw-r--r--src/core/keybindings.c9
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,