diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-03-18 16:17:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-18 16:17:11 -0400 |
commit | b01e8dea5866d4fb0ff0823511d47d223876fe07 (patch) | |
tree | 5f34a7f6fb704b95a1ab493d16d70cb5713a7e25 | |
parent | ec50b92bb43af7fc17f3c6d786bcbb585f673223 (diff) | |
parent | 2d2ce91883a707974b8fa78b349b2a762897cd9a (diff) |
Merge pull request #1121 from zandrmartin/registry-keyboard-caps
add missing ! for wl seat keyboard caps
-rw-r--r-- | wayland/registry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wayland/registry.c b/wayland/registry.c index 1ebc46e7..2df605a8 100644 --- a/wayland/registry.c +++ b/wayland/registry.c @@ -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; } |