mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
add missing ! for wl seat caps
This commit is contained in:
parent
ec50b92bb4
commit
2d2ce91883
@ -193,7 +193,7 @@ static void seat_handle_capabilities(void *data, struct wl_seat *seat,
|
||||
if ((caps & WL_SEAT_CAPABILITY_KEYBOARD) && !reg->keyboard) {
|
||||
reg->keyboard = wl_seat_get_keyboard(reg->seat);
|
||||
wl_keyboard_add_listener(reg->keyboard, &keyboard_listener, reg);
|
||||
} else if ((caps & WL_SEAT_CAPABILITY_KEYBOARD) && reg->keyboard) {
|
||||
} else if (!(caps & WL_SEAT_CAPABILITY_KEYBOARD) && reg->keyboard) {
|
||||
wl_keyboard_destroy(reg->keyboard);
|
||||
reg->keyboard = NULL;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user