mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-07 08:21:02 -04:00
wayland: add wayl_bindings_reset()
This function resets (clears) all key- and mouse-bindings associated with the seat.
This commit is contained in:
parent
e1a4b5c5a8
commit
026785b777
2 changed files with 13 additions and 5 deletions
16
wayland.c
16
wayland.c
|
|
@ -168,6 +168,16 @@ key_bindings_destroy(key_binding_list_t *bindings)
|
|||
}
|
||||
}
|
||||
|
||||
void
|
||||
wayl_bindings_reset(struct seat *seat)
|
||||
{
|
||||
|
||||
key_bindings_destroy(&seat->kbd.bindings.key);
|
||||
key_bindings_destroy(&seat->kbd.bindings.search);
|
||||
key_bindings_destroy(&seat->kbd.bindings.url);
|
||||
key_bindings_destroy(&seat->mouse.bindings);
|
||||
}
|
||||
|
||||
static void
|
||||
seat_destroy(struct seat *seat)
|
||||
{
|
||||
|
|
@ -175,11 +185,7 @@ seat_destroy(struct seat *seat)
|
|||
return;
|
||||
|
||||
tll_free(seat->mouse.buttons);
|
||||
|
||||
key_bindings_destroy(&seat->kbd.bindings.key);
|
||||
key_bindings_destroy(&seat->kbd.bindings.search);
|
||||
key_bindings_destroy(&seat->kbd.bindings.url);
|
||||
key_bindings_destroy(&seat->mouse.bindings);
|
||||
wayl_bindings_reset(seat);
|
||||
|
||||
if (seat->kbd.xkb_compose_state != NULL)
|
||||
xkb_compose_state_unref(seat->kbd.xkb_compose_state);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue