mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 12:55:58 +01:00
layer-shell: forbid changing the existing popup parent
This commit is contained in:
parent
b355a12751
commit
dc7b5ab21e
1 changed files with 4 additions and 0 deletions
|
@ -220,6 +220,10 @@ static void layer_surface_handle_get_popup(struct wl_client *client,
|
||||||
if (!parent) {
|
if (!parent) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (popup->parent != NULL) {
|
||||||
|
wl_resource_post_error(layer_resource, -1, "xdg_popup already has a parent");
|
||||||
|
return;
|
||||||
|
}
|
||||||
popup->parent = parent->surface;
|
popup->parent = parent->surface;
|
||||||
wl_list_insert(&parent->popups, &popup->link);
|
wl_list_insert(&parent->popups, &popup->link);
|
||||||
wl_signal_emit_mutable(&parent->events.new_popup, popup);
|
wl_signal_emit_mutable(&parent->events.new_popup, popup);
|
||||||
|
|
Loading…
Reference in a new issue