aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-11-11 16:16:28 -0500
committerLibravatar GitHub <noreply@github.com>2018-11-11 16:16:28 -0500
commitee6b0ce24ae74cfae5d41985cacdff6065c8f534 (patch)
treeaf2166f496051b6439ad345643a8ff3be507053a
parentMerge pull request #3108 from RedSoxFan/workspace-output-improved (diff)
parentcmd_ws_auto_back_and_forth: fix negation (diff)
downloadsway-ee6b0ce24ae74cfae5d41985cacdff6065c8f534.tar.gz
sway-ee6b0ce24ae74cfae5d41985cacdff6065c8f534.tar.zst
sway-ee6b0ce24ae74cfae5d41985cacdff6065c8f534.zip
Merge pull request #3113 from RedSoxFan/fix-ws-auto-back-and-forth
cmd_ws_auto_back_and_forth: fix negation
-rw-r--r--sway/commands/ws_auto_back_and_forth.c2
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) {
9 return error; 9 return error;
10 } 10 }
11 config->auto_back_and_forth = 11 config->auto_back_and_forth =
12 !parse_boolean(argv[0], config->auto_back_and_forth); 12 parse_boolean(argv[0], config->auto_back_and_forth);
13 return cmd_results_new(CMD_SUCCESS, NULL, NULL); 13 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
14} 14}