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/tree/view.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/tree/view.c')
-rw-r--r-- | sway/tree/view.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c index 28728420..5371ee20 100644 --- a/sway/tree/view.c +++ b/sway/tree/view.c @@ -654,6 +654,7 @@ void view_unmap(struct sway_view *view) { struct sway_seat *seat; wl_list_for_each(seat, &server.input->seats, link) { + seat->cursor->image_surface = NULL; seat_consider_warp_to_focus(seat); } |