mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
Merge pull request #363 from acrisci/feature/grab-tweaks
Input grab tweaks and fixes
This commit is contained in:
commit
7200d64336
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue