use xdg_shell helper

for xwayland continue using wlr_scene_subsurface_create()
This commit is contained in:
Leonardo Hernández Hernández 2022-03-18 00:52:21 -06:00
parent f1c92b05fb
commit 1b22ef1616
No known key found for this signature in database
GPG Key ID: E538897EE11B9624
1 changed files with 3 additions and 2 deletions

5
dwl.c
View File

@ -1319,8 +1319,9 @@ mapnotify(struct wl_listener *listener, void *data)
/* Create scene tree for this client and its border */
c->scene = &wlr_scene_tree_create(layers[LyrTile])->node;
c->scene_surface = client_surface(c)->data =
wlr_scene_subsurface_tree_create(c->scene, client_surface(c));
c->scene_surface = client_surface(c)->data = c->type == XDGShell
? wlr_scene_xdg_surface_create(c->scene, c->surface.xdg)
: wlr_scene_subsurface_tree_create(c->scene, client_surface(c));
c->scene_surface->data = c;
for (i = 0; i < 4; i++) {
c->border[i] = wlr_scene_rect_create(c->scene, 0, 0, bordercolor);