aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/workspace.c
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-19 00:04:21 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-19 22:47:54 +1000
commit9ea71f292b2270f37cf7ca641b7bae628ef41ed7 (patch)
treefbeb938d3bb175013a0224e95ab50bdf0a678ae8 /sway/tree/workspace.c
parentMerge pull request #2882 from RyanDwyer/fix-mouse-warp-logic (diff)
downloadsway-9ea71f292b2270f37cf7ca641b7bae628ef41ed7.tar.gz
sway-9ea71f292b2270f37cf7ca641b7bae628ef41ed7.tar.zst
sway-9ea71f292b2270f37cf7ca641b7bae628ef41ed7.zip
Introduce cursor_rebase
This function "rebases" the cursor on top of whatever is underneath it, without triggering any focus changes.
Diffstat (limited to 'sway/tree/workspace.c')
-rw-r--r--sway/tree/workspace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c
index a1282c1e..2a00824d 100644
--- a/sway/tree/workspace.c
+++ b/sway/tree/workspace.c
@@ -399,7 +399,7 @@ bool workspace_switch(struct sway_workspace *workspace,
399 } 399 }
400 seat_set_focus(seat, next); 400 seat_set_focus(seat, next);
401 arrange_workspace(workspace); 401 arrange_workspace(workspace);
402 cursor_send_pointer_motion(seat->cursor, 0, true); 402 cursor_rebase(seat->cursor);
403 return true; 403 return true;
404} 404}
405 405