aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2024-03-28 11:45:46 +0100
committerKenny Levinsen <kl@kl.wtf>2024-03-28 11:49:20 +0100
commit9e1465107788af2c8ce93e2a288e9d32bc09711c (patch)
tree99d77c4522e26b53520739a57bbfdf8dd6ce2222
parenta4ef37752fd6ae9e84d60cbe4eaead07f71f9435 (diff)
input: pass wlr_seat_client to wlr_seat_touch_notify_cancel()
References: https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/4613
-rw-r--r--sway/input/seatop_down.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sway/input/seatop_down.c b/sway/input/seatop_down.c
index 35fd3bcb..340e334b 100644
--- a/sway/input/seatop_down.c
+++ b/sway/input/seatop_down.c
@@ -117,7 +117,11 @@ static void handle_touch_cancel(struct sway_seat *seat,
}
if (e->surface) {
- wlr_seat_touch_notify_cancel(seat->wlr_seat, e->surface);
+ struct wl_client *client = wl_resource_get_client(e->surface->resource);
+ struct wlr_seat_client *seat_client = wlr_seat_client_for_wl_client(seat->wlr_seat, client);
+ if (seat_client != NULL) {
+ wlr_seat_touch_notify_cancel(seat->wlr_seat, seat_client);
+ }
}
if (wl_list_empty(&e->point_events)) {