Chase wlroots wlr_seat_keyboard() refactoring

wlr_seat_keyboard() now takes wlr_keyboard
This commit is contained in:
Johan Malm 2022-03-28 20:41:53 +01:00
parent 401b282772
commit bca2e9be60
2 changed files with 2 additions and 2 deletions

View file

@ -198,7 +198,7 @@ keyboard_key_notify(struct wl_listener *listener, void *data)
}
if (!handled) {
wlr_seat_set_keyboard(wlr_seat, &keyboard->base);
wlr_seat_set_keyboard(wlr_seat, keyboard);
wlr_seat_keyboard_notify_key(wlr_seat, event->time_msec,
event->keycode, event->state);
}