diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-10-06 20:10:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-06 20:10:09 +0200 |
commit | 8393266eb5ab046d591595593d8966fa3c791bd5 (patch) | |
tree | 09d86b74dbcd9ee5cce63d8e3ef3724d7d0e0d72 /swaybar/bar.c | |
parent | f1d8ba69a645b7b7ae1d59a0f4df9cb24c266182 (diff) | |
parent | d50f54fa42712dcdf670d407a88e736fd83f0581 (diff) |
Merge pull request #2778 from emersion/swaybar-seat-pointer
swaybar: fix binding to wl_pointer multiple times
Diffstat (limited to 'swaybar/bar.c')
-rw-r--r-- | swaybar/bar.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/swaybar/bar.c b/swaybar/bar.c index 388c24c4..c86e71b8 100644 --- a/swaybar/bar.c +++ b/swaybar/bar.c @@ -283,6 +283,10 @@ struct wl_pointer_listener pointer_listener = { static void seat_handle_capabilities(void *data, struct wl_seat *wl_seat, enum wl_seat_capability caps) { struct swaybar *bar = data; + if (bar->pointer.pointer != NULL) { + wl_pointer_release(bar->pointer.pointer); + bar->pointer.pointer = NULL; + } if ((caps & WL_SEAT_CAPABILITY_POINTER)) { bar->pointer.pointer = wl_seat_get_pointer(wl_seat); wl_pointer_add_listener(bar->pointer.pointer, &pointer_listener, bar); @@ -429,7 +433,7 @@ static void handle_global(void *data, struct wl_registry *registry, &wl_compositor_interface, 3); } else if (strcmp(interface, wl_seat_interface.name) == 0) { bar->seat = wl_registry_bind(registry, name, - &wl_seat_interface, 1); + &wl_seat_interface, 3); wl_seat_add_listener(bar->seat, &seat_listener, bar); } else if (strcmp(interface, wl_shm_interface.name) == 0) { bar->shm = wl_registry_bind(registry, name, |