aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/seat.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/seat.c')
-rw-r--r--sway/commands/seat.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sway/commands/seat.c b/sway/commands/seat.c
index 3e7ffed9..b8db862b 100644
--- a/sway/commands/seat.c
+++ b/sway/commands/seat.c
@@ -35,7 +35,9 @@ struct cmd_results *cmd_seat(int argc, char **argv) {
35 35
36 struct seat_config *sc = 36 struct seat_config *sc =
37 store_seat_config(config->handler_context.seat_config); 37 store_seat_config(config->handler_context.seat_config);
38 input_manager_apply_seat_config(sc); 38 if (!config->reading) {
39 input_manager_apply_seat_config(sc);
40 }
39 41
40 config->handler_context.seat_config = NULL; 42 config->handler_context.seat_config = NULL;
41 return cmd_results_new(CMD_SUCCESS, NULL, NULL); 43 return cmd_results_new(CMD_SUCCESS, NULL, NULL);