mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
seat: Don't finish wlr_keyboard if server was never started
This commit is contained in:
parent
640f3b9f21
commit
2ce0305483
1 changed files with 4 additions and 1 deletions
|
|
@ -259,7 +259,10 @@ void destroy_wl_seats(struct wlr_wl_backend *wl) {
|
||||||
}
|
}
|
||||||
if (seat->wl_keyboard) {
|
if (seat->wl_keyboard) {
|
||||||
wl_keyboard_release(seat->wl_keyboard);
|
wl_keyboard_release(seat->wl_keyboard);
|
||||||
wlr_keyboard_finish(&seat->wlr_keyboard);
|
|
||||||
|
if (seat->backend->started) {
|
||||||
|
wlr_keyboard_finish(&seat->wlr_keyboard);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (seat->zwp_tablet_seat_v2) {
|
if (seat->zwp_tablet_seat_v2) {
|
||||||
finish_seat_tablet(seat);
|
finish_seat_tablet(seat);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue