diff options
author | Rouven Czerwinski <rouven@czerwinskis.de> | 2019-01-07 13:23:28 +0100 |
---|---|---|
committer | Brian Ashworth <bosrsf04@gmail.com> | 2019-01-07 10:30:19 -0500 |
commit | cc858e605a465a40abfce0fb53a70e59a79c248d (patch) | |
tree | 06981c577fd5a92e07835cedc318b3d5c7c92f42 /sway/input/seat.c | |
parent | 0b18560952c8615b945ab62ee365b95fede647cc (diff) |
seat: unhide the cursor if it is warped to focus
Unhide the cursor if container warping is enabled.
Also set the image_surface to NULL during view_unmap, otherwise the cursor will
try to access the surface which is currently being unmapped.
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r-- | sway/input/seat.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c index 9422713d..52790039 100644 --- a/sway/input/seat.c +++ b/sway/input/seat.c @@ -1231,4 +1231,8 @@ void seat_consider_warp_to_focus(struct sway_seat *seat) { } else { cursor_warp_to_workspace(seat->cursor, focus->sway_workspace); } + if (seat->cursor->hidden){ + cursor_unhide(seat->cursor); + wl_event_source_timer_update(seat->cursor->hide_source, cursor_get_timeout(seat->cursor)); + } } |