This commit is contained in:
Firgen 2025-03-26 02:38:45 -05:00 committed by GitHub
commit 405d227a8e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -231,7 +231,10 @@ void cursor_notify_key_press(struct sway_cursor *cursor) {
}
if (cursor->hide_when_typing == HIDE_WHEN_TYPING_ENABLE) {
cursor_hide(cursor);
if (cursor->pressed_button_count == 0) {
// Do not hide cursor unless all buttons are released
cursor_hide(cursor);
}
}
}