mirror of
https://github.com/swaywm/sway.git
synced 2025-11-09 13:29:49 -05:00
Add mouse_warping container
This option always moves the cursor into the middle of the container if the warp variable is true in seat_set_focus_warp. Fixes #2577
This commit is contained in:
parent
87bc707e9b
commit
41991542ca
5 changed files with 22 additions and 9 deletions
|
|
@ -6,13 +6,15 @@ struct cmd_results *cmd_mouse_warping(int argc, char **argv) {
|
|||
struct cmd_results *error = NULL;
|
||||
if ((error = checkarg(argc, "mouse_warping", EXPECTED_EQUAL_TO, 1))) {
|
||||
return error;
|
||||
} else if (strcasecmp(argv[0], "container") == 0) {
|
||||
config->mouse_warping = WARP_CONTAINER;
|
||||
} else if (strcasecmp(argv[0], "output") == 0) {
|
||||
config->mouse_warping = true;
|
||||
config->mouse_warping = WARP_OUTPUT;
|
||||
} else if (strcasecmp(argv[0], "none") == 0) {
|
||||
config->mouse_warping = false;
|
||||
config->mouse_warping = WARP_NO;
|
||||
} else {
|
||||
return cmd_results_new(CMD_FAILURE, "mouse_warping",
|
||||
"Expected 'mouse_warping output|none'");
|
||||
"Expected 'mouse_warping output|container|none'");
|
||||
}
|
||||
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue