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 committed by Simon Ser
parent 52bd6aecf2
commit e5fed6b246
1 changed files with 1 additions and 1 deletions

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);
}
}