62d69e9f14
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.
15 lines
440 B
C
15 lines
440 B
C
#include <string.h>
|
|
#include <strings.h>
|
|
#include "sway/commands.h"
|
|
#include "util.h"
|
|
|
|
struct cmd_results *cmd_ws_auto_back_and_forth(int argc, char **argv) {
|
|
struct cmd_results *error = NULL;
|
|
if ((error = checkarg(argc, "workspace_auto_back_and_forth", EXPECTED_EQUAL_TO, 1))) {
|
|
return error;
|
|
}
|
|
config->auto_back_and_forth =
|
|
parse_boolean(argv[0], config->auto_back_and_forth);
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
}
|