input/seat: don't notify keyboard grabs with NULL surface on shutdown

Fixes #5469, a minor regression introduced in #5368.
This commit is contained in:
Tudor Brindus 2020-06-19 12:23:23 -04:00 committed by Simon Ser
parent b3f08597cd
commit 2270b4c213

View File

@ -1179,7 +1179,13 @@ void seat_set_focus_surface(struct sway_seat *seat,
seat_send_unfocus(focus, seat);
seat->has_focus = false;
}
seat_keyboard_notify_enter(seat, surface);
if (surface) {
seat_keyboard_notify_enter(seat, surface);
} else {
wlr_seat_keyboard_notify_clear_focus(seat->wlr_seat);
}
seat_tablet_pads_notify_enter(seat, surface);
}