toplevel-management: ignore inert seats

This commit is contained in:
Isaac Freund 2021-01-02 20:06:46 +01:00 committed by Ilia Bozhinov
parent e8d56ca415
commit abcab0331f
1 changed files with 4 additions and 1 deletions

View File

@ -107,8 +107,11 @@ static void foreign_toplevel_handle_activate(struct wl_client *client,
if (!toplevel) {
return;
}
struct wlr_seat_client *seat_client = wlr_seat_client_from_resource(seat);
if (!seat_client) {
return;
}
struct wlr_foreign_toplevel_handle_v1_activated_event event = {
.toplevel = toplevel,
.seat = seat_client->seat,