Don't unhide cursor on touch events

Touch events hide the cursor so unhiding it again only causes it to
flicker.
This commit is contained in:
David96 2020-05-02 15:41:08 +02:00
parent ae3ec745f8
commit 5aec0ae74a

View file

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