Skip to content

Commit

Permalink
Apply implicit fallback seat config
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
RedSoxFan authored and emersion committed Dec 31, 2018
1 parent 54d0f3a commit 4a3ada3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sway/input/input-manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ void input_manager_verify_fallback_seat(void) {
seat = input_manager_get_default_seat();
struct seat_config *sc = new_seat_config(seat->wlr_seat->name);
sc->fallback = true;
store_seat_config(sc);
sc = store_seat_config(sc);
input_manager_apply_seat_config(sc);
}
}

Expand Down

0 comments on commit 4a3ada3

Please sign in to comment.