Fix typo in input-manager.c

This commit is contained in:
iguanajuice 2024-07-31 11:17:10 -04:00 committed by iguanajuice
parent 6b87ec4aea
commit e123127a53

View file

@ -632,7 +632,7 @@ void input_manager_apply_seat_config(struct seat_config *seat_config) {
if (strcmp(seat_config->name, "*") == 0) { if (strcmp(seat_config->name, "*") == 0) {
struct sway_seat *seat = NULL; struct sway_seat *seat = NULL;
wl_list_for_each(seat, &server.input->seats, link) { wl_list_for_each(seat, &server.input->seats, link) {
// Only apply the wildcard config directly if there is no seatz // Only apply the wildcard config directly if there is no seat
// specific config // specific config
struct seat_config *sc = seat->config; struct seat_config *sc = seat->config;
if (!sc) { if (!sc) {