diff options
author | Brian Ashworth <[email protected]> | 2019-01-09 00:57:23 -0500 |
---|---|---|
committer | Brian Ashworth <[email protected]> | 2019-01-09 01:06:21 -0500 |
commit | f33969358c77ea440677a97b4f9a5fb2013ca5ea (patch) | |
tree | 7840ff5e7d8573440c2b0386709d60fd5b1306f3 /sway/config.c | |
parent | da8f24de1d3d5843142be1164919ca6a49155ae9 (diff) |
reload: apply seat cfgs after reading entire cfg
Wait until all seat configs have been read before applying them on
reload. This prevents unnecessary attachment/detachment of input
devices and therefore creation/destruction of seat devices as
individual lines are read.
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/config.c b/sway/config.c index 8a0b293c..dfbe4cb9 100644 --- a/sway/config.c +++ b/sway/config.c @@ -463,7 +463,11 @@ bool load_main_config(const char *file, bool is_active, bool validating) { if (config->swaynag_config_errors.pid > 0) { swaynag_show(&config->swaynag_config_errors); } + input_manager_verify_fallback_seat(); + for (int i = 0; i < config->seat_configs->length; i++) { + input_manager_apply_seat_config(config->seat_configs->items[i]); + } } if (old_config) { |