41991542ca
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
22 lines
698 B
C
22 lines
698 B
C
#include <string.h>
|
|
#include <strings.h>
|
|
#include "sway/commands.h"
|
|
|
|
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 = WARP_OUTPUT;
|
|
} else if (strcasecmp(argv[0], "none") == 0) {
|
|
config->mouse_warping = WARP_NO;
|
|
} else {
|
|
return cmd_results_new(CMD_FAILURE, "mouse_warping",
|
|
"Expected 'mouse_warping output|container|none'");
|
|
}
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
}
|
|
|