mirror of
https://codeberg.org/FabricSoul/dwl.git
synced 2025-08-03 20:10:23 -04:00
parent
2768af5a9b
commit
294fb324d8
2 changed files with 29 additions and 1 deletions
9
dwl.c
9
dwl.c
|
@ -880,7 +880,14 @@ createnotify(struct wl_listener *listener, void *data)
|
|||
struct wlr_xdg_surface *xdg_surface = data;
|
||||
Client *c;
|
||||
|
||||
if (xdg_surface->role != WLR_XDG_SURFACE_ROLE_TOPLEVEL)
|
||||
if (xdg_surface->role == WLR_XDG_SURFACE_ROLE_POPUP) {
|
||||
struct wlr_box box;
|
||||
if (!(c = client_from_popup(xdg_surface->popup)))
|
||||
return;
|
||||
client_get_geometry(c, &box);
|
||||
wlr_xdg_popup_unconstrain_from_box(xdg_surface->popup, &box);
|
||||
return;
|
||||
} else if (xdg_surface->role == WLR_XDG_SURFACE_ROLE_NONE)
|
||||
return;
|
||||
|
||||
/* Allocate a Client for this surface */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue