From: John Lindgren Date: Sun, 21 Aug 2022 19:07:16 +0000 (-0400) Subject: keyboard: Hide Alt-Tab switcher when canceling via Escape X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=33bc37e7d05b870164d8faad2f0f057910a62eaa;p=proto%2Flabwc.git keyboard: Hide Alt-Tab switcher when canceling via Escape --- diff --git a/src/keyboard.c b/src/keyboard.c index e754d5f6..93d91071 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -151,6 +151,7 @@ handle_compositor_keybindings(struct wl_listener *listener, if (syms[i] == XKB_KEY_Escape) { /* cancel */ server->cycle_view = NULL; + osd_finish(server); return true; } }