Skip to content

Commit

Permalink
Merge pull request #3113 from RedSoxFan/fix-ws-auto-back-and-forth
Browse files Browse the repository at this point in the history
cmd_ws_auto_back_and_forth: fix negation
  • Loading branch information
ddevault authored Nov 11, 2018
2 parents 101515e + 62d69e9 commit ee6b0ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sway/commands/ws_auto_back_and_forth.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

0 comments on commit ee6b0ce

Please sign in to comment.