aboutsummaryrefslogtreecommitdiff
path: root/rootston/keyboard.c
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-10-31 08:38:21 -0400
committerTony Crisci <tony@dubstepdish.com>2017-10-31 08:38:21 -0400
commite5b49158b49d8e00d65a7ff3c03c58726c6ba992 (patch)
tree0bed2a0f68566e50bf2a75c615a35d14ba52a4f0 /rootston/keyboard.c
parente9c2cf09dcf1ac41b66d70ecdaf37a629aa4d7cf (diff)
rootston: end grab on escape
Diffstat (limited to 'rootston/keyboard.c')
-rw-r--r--rootston/keyboard.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/rootston/keyboard.c b/rootston/keyboard.c
index dc48597e..e174b731 100644
--- a/rootston/keyboard.c
+++ b/rootston/keyboard.c
@@ -83,6 +83,11 @@ static bool keyboard_keysym_press(struct roots_keyboard *keyboard,
return true;
}
+ if (keysym == XKB_KEY_Escape) {
+ wlr_seat_pointer_end_grab(keyboard->input->wl_seat);
+ wlr_seat_keyboard_end_grab(keyboard->input->wl_seat);
+ }
+
uint32_t modifiers = wlr_keyboard_get_modifiers(keyboard->device->keyboard);
struct wl_list *bindings = &keyboard->input->server->config->bindings;
struct binding_config *bc;