commit e168e8f0ffbcd3924570aec63655c6ca0ab384fa
parent 88a5e26c6eeb28cf934401d377654236fdf8cdfd
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date: Mon, 8 Oct 2018 21:18:30 +1000
Don't apply seat config when validating
Diffstat:
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/sway/commands/seat/attach.c b/sway/commands/seat/attach.c
@@ -23,6 +23,8 @@ struct cmd_results *seat_cmd_attach(int argc, char **argv) {
new_attachment->identifier = strdup(argv[0]);
list_add(new_config->attachments, new_attachment);
- apply_seat_config(new_config);
+ if (!config->validating) {
+ apply_seat_config(new_config);
+ }
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}
diff --git a/sway/commands/seat/fallback.c b/sway/commands/seat/fallback.c
@@ -27,6 +27,8 @@ struct cmd_results *seat_cmd_fallback(int argc, char **argv) {
"Expected 'fallback <true|false>'");
}
- apply_seat_config(new_config);
+ if (!config->validating) {
+ apply_seat_config(new_config);
+ }
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}