aboutsummaryrefslogtreecommitdiff
path: root/sway/tree/container.c
diff options
context:
space:
mode:
authorKirill Primak <vyivel@eclair.cafe>2023-07-26 20:32:33 +0300
committerSimon Ser <contact@emersion.fr>2023-08-21 18:41:32 +0200
commita9086518219c0ace4a5d81c2f7219dae3b6aa20c (patch)
tree5593753d34eee2ea4651bfecd1c238cfe18263c9 /sway/tree/container.c
parent363c57984d08ff54bbf31f567ffcd4addad98753 (diff)
chore: chase wlroots xdg-surface role rework
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r--sway/tree/container.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c
index d2c4ffc4..8c344a6d 100644
--- a/sway/tree/container.c
+++ b/sway/tree/container.c
@@ -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,