mirror of
https://github.com/swaywm/sway.git
synced 2024-11-13 05:54:11 +01:00
cmd_ws_auto_back_and_forth: fix negation
In the conversion to `parse_boolean` for `cmd_ws_auto_back_and_forth`, the `negation` was never removed causing the setting to be the opposite of what it should be.
This commit is contained in:
parent
101515eb0c
commit
62d69e9f14
@ -9,6 +9,6 @@ struct cmd_results *cmd_ws_auto_back_and_forth(int argc, char **argv) {
|
||||
return error;
|
||||
}
|
||||
config->auto_back_and_forth =
|
||||
!parse_boolean(argv[0], config->auto_back_and_forth);
|
||||
parse_boolean(argv[0], config->auto_back_and_forth);
|
||||
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user