use wlr_scene_node_raise_to_top()

This commit is contained in:
Leonardo Hernandez Hernandez 2021-10-31 17:05:40 -06:00 committed by Leonardo Hernández Hernández
parent 2b2f72d7c2
commit b97d9e1ce1
No known key found for this signature in database
GPG Key ID: E538897EE11B9624
1 changed files with 2 additions and 5 deletions

7
dwl.c
View File

@ -1067,11 +1067,8 @@ focusclient(Client *c, int lift)
int i;
/* Raise client in stacking order if requested */
if (c && lift) {
/* This isn't easy to do via the current API */
wl_list_remove(&c->scene->state.link);
wl_list_insert(c->scene->parent->state.children.prev, &c->scene->state.link);
}
if (c && lift)
wlr_scene_node_raise_to_top(c->scene);
if (c && client_surface(c) == old)
return;