aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/cursor.c
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2019-02-12 22:55:23 +0100
committerLibravatar emersion <contact@emersion.fr>2019-02-12 22:57:23 +0100
commit97c89b24b8e4a8e091f6974333457deb73b7800f (patch)
treef6e1e3686921968161fdd5091667b2794f6ca184 /sway/input/cursor.c
parentworkspace_get_initial_output: handle focused layer (diff)
downloadsway-97c89b24b8e4a8e091f6974333457deb73b7800f.tar.gz
sway-97c89b24b8e4a8e091f6974333457deb73b7800f.tar.zst
sway-97c89b24b8e4a8e091f6974333457deb73b7800f.zip
Rebase cursor when a layer surface maps
Also removes an extraneous arrange_outputs call, it's already called if necessary in arrange_layers. Updates https://github.com/swaywm/sway/issues/3080
Diffstat (limited to 'sway/input/cursor.c')
-rw-r--r--sway/input/cursor.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 1bf548db..263b6758 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -283,6 +283,19 @@ void cursor_rebase(struct sway_cursor *cursor) {
283 cursor_do_rebase(cursor, time_msec, cursor->previous.node, surface, sx, sy); 283 cursor_do_rebase(cursor, time_msec, cursor->previous.node, surface, sx, sy);
284} 284}
285 285
286void cursor_rebase_all(void) {
287 if (!root->outputs->length) {
288 return;
289 }
290
291 struct sway_seat *seat;
292 wl_list_for_each(seat, &server.input->seats, link) {
293 if (!seat_doing_seatop(seat)) {
294 cursor_rebase(seat->cursor);
295 }
296 }
297}
298
286static int hide_notify(void *data) { 299static int hide_notify(void *data) {
287 struct sway_cursor *cursor = data; 300 struct sway_cursor *cursor = data;
288 wlr_cursor_set_image(cursor->cursor, NULL, 0, 0, 0, 0, 0, 0); 301 wlr_cursor_set_image(cursor->cursor, NULL, 0, 0, 0, 0, 0, 0);