diff options
Diffstat (limited to 'sway/input')
-rw-r--r-- | sway/input/cursor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c index 878a8e99..470bb996 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -364,9 +364,9 @@ static void handle_touch_down(struct wl_listener *listener, void *data) { // TODO: fall back to cursor simulation if client has not bound to touch if (seat_is_input_allowed(seat, surface)) { + cursor_hide(cursor); wlr_seat_touch_notify_down(wlr_seat, surface, event->time_msec, event->touch_id, sx, sy); - cursor_hide(cursor); } seat_set_focus(seat, focused_node); |