diff options
author | Brian Ashworth <bosrsf04@gmail.com> | 2018-11-11 16:05:13 -0500 |
---|---|---|
committer | Brian Ashworth <bosrsf04@gmail.com> | 2018-11-11 16:05:13 -0500 |
commit | 62d69e9f14559635ed0c063646b9b1c4be61c015 (patch) | |
tree | af2166f496051b6439ad345643a8ff3be507053a /sway | |
parent | 101515eb0c0039e8f67b7d3c8269a8898d8760ac (diff) |
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.
Diffstat (limited to 'sway')
-rw-r--r-- | sway/commands/ws_auto_back_and_forth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/ws_auto_back_and_forth.c b/sway/commands/ws_auto_back_and_forth.c index 3449d4cc..adb851c2 100644 --- a/sway/commands/ws_auto_back_and_forth.c +++ b/sway/commands/ws_auto_back_and_forth.c @@ -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); } |