summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/input/seat.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 6a899124..4da8e937 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -516,6 +516,7 @@ struct sway_seat *seat_create(const char *seat_name) {
516 516
517static void seat_update_capabilities(struct sway_seat *seat) { 517static void seat_update_capabilities(struct sway_seat *seat) {
518 uint32_t caps = 0; 518 uint32_t caps = 0;
519 uint32_t previous_caps = seat->wlr_seat->capabilities;
519 struct sway_seat_device *seat_device; 520 struct sway_seat_device *seat_device;
520 wl_list_for_each(seat_device, &seat->devices, link) { 521 wl_list_for_each(seat_device, &seat->devices, link) {
521 switch (seat_device->input_device->wlr_device->type) { 522 switch (seat_device->input_device->wlr_device->type) {
@@ -545,7 +546,9 @@ static void seat_update_capabilities(struct sway_seat *seat) {
545 wlr_seat_set_capabilities(seat->wlr_seat, caps); 546 wlr_seat_set_capabilities(seat->wlr_seat, caps);
546 } else { 547 } else {
547 wlr_seat_set_capabilities(seat->wlr_seat, caps); 548 wlr_seat_set_capabilities(seat->wlr_seat, caps);
548 cursor_set_image(seat->cursor, "left_ptr", NULL); 549 if ((previous_caps & WL_SEAT_CAPABILITY_POINTER) == 0) {
550 cursor_set_image(seat->cursor, "left_ptr", NULL);
551 }
549 } 552 }
550} 553}
551 554