Don't unhide cursor on touch events

Touch events hide the cursor so unhiding it again only causes it to
flicker.
master
David96 5 years ago committed by Simon Ser
parent 52bd6aecf2
commit e5fed6b246

@ -268,7 +268,7 @@ void cursor_handle_activity(struct sway_cursor *cursor,
cursor->hide_source, cursor_get_timeout(cursor)); cursor->hide_source, cursor_get_timeout(cursor));
seat_idle_notify_activity(cursor->seat, idle_source); seat_idle_notify_activity(cursor->seat, idle_source);
if (cursor->hidden) { if (cursor->hidden && idle_source != IDLE_SOURCE_TOUCH) {
cursor_unhide(cursor); cursor_unhide(cursor);
} }
} }

Loading…
Cancel
Save