mirror of
https://github.com/swaywm/sway.git
synced 2024-11-14 22:43:58 +01:00
commands/move: Warp cursor after moving workspace to another output
This makes sway's behavior consistent with i3 when `mouse_warping` is
set to any value besides `none`.
Fixes #7027.
(cherry picked from commit e3c63bf58d
)
This commit is contained in:
parent
54d1e0d568
commit
51663bb120
@ -686,6 +686,9 @@ static struct cmd_results *cmd_move_workspace(int argc, char **argv) {
|
|||||||
arrange_output(old_output);
|
arrange_output(old_output);
|
||||||
arrange_output(new_output);
|
arrange_output(new_output);
|
||||||
|
|
||||||
|
struct sway_seat *seat = config->handler_context.seat;
|
||||||
|
seat_consider_warp_to_focus(seat);
|
||||||
|
|
||||||
return cmd_results_new(CMD_SUCCESS, NULL);
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user