fix keyboard hotplugging

This commit is contained in:
Tony Crisci 2017-12-16 19:16:00 -05:00
parent 9e4fc7253e
commit 0256cd1473
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,6 @@
struct sway_keyboard {
struct sway_seat_device *seat_device;
struct wl_list link; // sway_seat::keyboards
struct xkb_keymap *keymap;

View File

@ -103,9 +103,10 @@ void sway_keyboard_configure(struct sway_keyboard *keyboard) {
}
void sway_keyboard_destroy(struct sway_keyboard *keyboard) {
xkb_keymap_unref(keyboard->keymap);
if (!keyboard) {
return;
}
wl_list_remove(&keyboard->keyboard_key.link);
wl_list_remove(&keyboard->keyboard_modifiers.link);
wl_list_remove(&keyboard->link);
free(keyboard);
}