fix unmanaged clients not being unlinked from the commit listener

This commit is contained in:
Leonardo Hernández Hernández 2022-09-18 15:20:00 -05:00
parent bcc8ce7a40
commit bc72af6e24
No known key found for this signature in database
GPG Key ID: E538897EE11B9624
1 changed files with 4 additions and 4 deletions

8
dwl.c
View File

@ -2362,14 +2362,14 @@ unmapnotify(struct wl_listener *listener, void *data)
if (c->mon)
c->mon->un_map = 1;
if (client_is_unmanaged(c)) {
wlr_scene_node_destroy(c->scene);
return;
}
if (client_is_unmanaged(c))
goto end;
wl_list_remove(&c->link);
setmon(c, NULL, 0);
wl_list_remove(&c->flink);
end:
wl_list_remove(&c->commit.link);
wlr_scene_node_destroy(c->scene);
printstatus();