mirror of
https://github.com/swaywm/sway.git
synced 2024-11-04 23:43:14 +00:00
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.
This commit is contained in:
parent
da8f24de1d
commit
f33969358c
|
@ -35,7 +35,9 @@ struct cmd_results *cmd_seat(int argc, char **argv) {
|
|||
|
||||
struct seat_config *sc =
|
||||
store_seat_config(config->handler_context.seat_config);
|
||||
if (!config->reading) {
|
||||
input_manager_apply_seat_config(sc);
|
||||
}
|
||||
|
||||
config->handler_context.seat_config = NULL;
|
||||
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue