mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 04:45:58 +01:00
foreign toplevel: send parent event only to clients that support it
This commit is contained in:
parent
5217456b50
commit
b4ed8b3d74
1 changed files with 4 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue