aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
authorhrdl <31923882+hrdl-github@users.noreply.github.com>2023-05-04 17:26:15 +0200
committerSimon Ser <contact@emersion.fr>2023-05-04 17:34:54 +0200
commit3cd7c7178079bf61bb7967690e7767442b369782 (patch)
tree98fb07720c4d9f8972e9d904594da9a46a7a3108 /sway
parente8f7551e46052a8df04b630bf06565ca77f830fb (diff)
handle_touch_cancel: fix begin default
I forgot to call seatop_begin_default in e8f7551e46052a8df04b630bf06565ca77f830fb.
Diffstat (limited to 'sway')
-rw-r--r--sway/input/seatop_down.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/input/seatop_down.c b/sway/input/seatop_down.c
index c5901f6a..81e8d0a7 100644
--- a/sway/input/seatop_down.c
+++ b/sway/input/seatop_down.c
@@ -117,6 +117,10 @@ static void handle_touch_cancel(struct sway_seat *seat,
}
}
+ if (wl_list_empty(&e->point_events)) {
+ seatop_begin_default(seat);
+ }
+
if (e->surface) {
wlr_seat_touch_notify_cancel(seat->wlr_seat, e->surface);
}