input/cursor: treat swipe begin as idle activity too

Accidentally overlooked in fd53f80.

(cherry picked from commit 7d1ccafae5)
This commit is contained in:
Tudor Brindus 2022-01-17 17:13:26 -05:00 committed by Simon Ser
parent 9a2155eed2
commit 7a5e62036d
1 changed files with 1 additions and 0 deletions

View File

@ -958,6 +958,7 @@ static void handle_pointer_swipe_begin(struct wl_listener *listener, void *data)
struct sway_cursor *cursor = wl_container_of(
listener, cursor, swipe_begin);
struct wlr_event_pointer_swipe_begin *event = data;
cursor_handle_activity_from_device(cursor, event->device);
wlr_pointer_gestures_v1_send_swipe_begin(
cursor->pointer_gestures, cursor->seat->wlr_seat,
event->time_msec, event->fingers);