mirror of
https://github.com/swaywm/sway.git
synced 2026-04-29 06:46:22 -04:00
Apply implicit fallback seat config
The implicit fallback seat config needs to be applied (if created). Otherwise, the input devices will still be removed from the implicit default seat on reload when there is any seat config.
This commit is contained in:
parent
69e0982439
commit
899f6f3326
1 changed files with 2 additions and 1 deletions
|
|
@ -102,7 +102,8 @@ void input_manager_verify_fallback_seat(void) {
|
||||||
seat = input_manager_get_default_seat();
|
seat = input_manager_get_default_seat();
|
||||||
struct seat_config *sc = new_seat_config(seat->wlr_seat->name);
|
struct seat_config *sc = new_seat_config(seat->wlr_seat->name);
|
||||||
sc->fallback = true;
|
sc->fallback = true;
|
||||||
store_seat_config(sc);
|
sc = store_seat_config(sc);
|
||||||
|
input_manager_apply_seat_config(sc);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue