mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
xdg-popup: avoid using wlr_surface_destroy_role_object()
This commit is contained in:
parent
10ba8ebc70
commit
e5300c225e
1 changed files with 2 additions and 2 deletions
|
@ -191,7 +191,7 @@ static void destroy_xdg_popup_grab(struct wlr_xdg_popup_grab *xdg_grab) {
|
||||||
|
|
||||||
struct wlr_xdg_popup *popup, *tmp;
|
struct wlr_xdg_popup *popup, *tmp;
|
||||||
wl_list_for_each_safe(popup, tmp, &xdg_grab->popups, grab_link) {
|
wl_list_for_each_safe(popup, tmp, &xdg_grab->popups, grab_link) {
|
||||||
wlr_surface_destroy_role_object(popup->base->surface);
|
wlr_xdg_popup_destroy(popup);
|
||||||
}
|
}
|
||||||
|
|
||||||
wl_list_remove(&xdg_grab->link);
|
wl_list_remove(&xdg_grab->link);
|
||||||
|
@ -275,7 +275,7 @@ static void xdg_popup_handle_grab(struct wl_client *client,
|
||||||
struct wlr_seat_client *seat_client =
|
struct wlr_seat_client *seat_client =
|
||||||
wlr_seat_client_from_resource(seat_resource);
|
wlr_seat_client_from_resource(seat_resource);
|
||||||
if (seat_client == NULL) {
|
if (seat_client == NULL) {
|
||||||
wlr_surface_destroy_role_object(popup->base->surface);
|
wlr_xdg_popup_destroy(popup);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (popup->sent_initial_configure) {
|
if (popup->sent_initial_configure) {
|
||||||
|
|
Loading…
Reference in a new issue