mirror of
https://github.com/swaywm/sway.git
synced 2024-11-22 07:51:28 +00:00
chore: chase wlroots xdg-surface role rework
This commit is contained in:
parent
363c57984d
commit
a908651821
|
@ -35,13 +35,13 @@ struct wlr_layer_surface_v1 *toplevel_layer_surface_from_surface(
|
|||
}
|
||||
|
||||
// Layer surface popup
|
||||
struct wlr_xdg_surface * xdg_popup = NULL;
|
||||
if ((xdg_popup = wlr_xdg_surface_try_from_wlr_surface(surface)) &&
|
||||
xdg_popup->role == WLR_XDG_SURFACE_ROLE_POPUP) {
|
||||
if (!xdg_popup->popup->parent) {
|
||||
struct wlr_xdg_surface *xdg_surface = NULL;
|
||||
if ((xdg_surface = wlr_xdg_surface_try_from_wlr_surface(surface)) &&
|
||||
xdg_surface->role == WLR_XDG_SURFACE_ROLE_POPUP && xdg_surface->popup != NULL) {
|
||||
if (!xdg_surface->popup->parent) {
|
||||
return NULL;
|
||||
}
|
||||
surface = wlr_surface_get_root_surface(xdg_popup->popup->parent);
|
||||
surface = wlr_surface_get_root_surface(xdg_surface->popup->parent);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
@ -56,7 +56,8 @@ static struct wlr_surface *layer_surface_at(struct sway_output *output,
|
|||
static bool surface_is_xdg_popup(struct wlr_surface *surface) {
|
||||
struct wlr_xdg_surface *xdg_surface =
|
||||
wlr_xdg_surface_try_from_wlr_surface(surface);
|
||||
return xdg_surface != NULL && xdg_surface->role == WLR_XDG_SURFACE_ROLE_POPUP;
|
||||
return xdg_surface != NULL && xdg_surface->role == WLR_XDG_SURFACE_ROLE_POPUP &&
|
||||
xdg_surface->popup != NULL;
|
||||
}
|
||||
|
||||
static struct wlr_surface *layer_surface_popup_at(struct sway_output *output,
|
||||
|
|
|
@ -394,7 +394,7 @@ static bool surface_is_popup(struct wlr_surface *surface) {
|
|||
}
|
||||
struct wlr_xdg_surface *xdg_surface =
|
||||
wlr_xdg_surface_try_from_wlr_surface(surface);
|
||||
return xdg_surface->role == WLR_XDG_SURFACE_ROLE_POPUP;
|
||||
return xdg_surface->role == WLR_XDG_SURFACE_ROLE_POPUP && xdg_surface->popup != NULL;
|
||||
}
|
||||
|
||||
struct sway_container *container_at(struct sway_workspace *workspace,
|
||||
|
|
Loading…
Reference in a new issue