foreign toplevel: send parent event only to clients that support it

This commit is contained in:
Daniel Kondor 2020-10-20 10:08:24 +08:00 committed by Simon Ser
parent 5217456b50
commit b4ed8b3d74
1 changed files with 4 additions and 0 deletions

View File

@ -408,6 +408,10 @@ void wlr_foreign_toplevel_handle_v1_set_fullscreen(
static void toplevel_resource_send_parent(
struct wl_resource *toplevel_resource,
struct wlr_foreign_toplevel_handle_v1 *parent) {
if (wl_resource_get_version(toplevel_resource) <
ZWLR_FOREIGN_TOPLEVEL_HANDLE_V1_PARENT_SINCE_VERSION) {
return;
}
struct wl_client *client = wl_resource_get_client(toplevel_resource);
struct wl_resource *parent_resource = NULL;
if (parent) {