diff options
author | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-10-08 21:18:30 +1000 |
---|---|---|
committer | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-10-08 21:18:30 +1000 |
commit | e168e8f0ffbcd3924570aec63655c6ca0ab384fa (patch) | |
tree | d2602caa071680a898a80f8096ed8f787103329e /sway/commands/seat/fallback.c | |
parent | 88a5e26c6eeb28cf934401d377654236fdf8cdfd (diff) |
Don't apply seat config when validating
Diffstat (limited to 'sway/commands/seat/fallback.c')
-rw-r--r-- | sway/commands/seat/fallback.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sway/commands/seat/fallback.c b/sway/commands/seat/fallback.c index 56feaab5..11f5a08c 100644 --- 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); } |