make sure configure and activate listeners are removed from list

This commit is contained in:
Leonardo Hernández Hernández 2022-03-16 21:42:45 -06:00
parent 88f241d1cf
commit 2768af5a9b
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

@ -1004,9 +1004,10 @@ destroynotify(struct wl_listener *listener, void *data)
wl_list_remove(&c->set_title.link);
wl_list_remove(&c->fullscreen.link);
#ifdef XWAYLAND
if (c->type == X11Managed)
if (c->type != XDGShell) {
wl_list_remove(&c->configure.link);
wl_list_remove(&c->activate.link);
else if (c->type == XDGShell)
} else
#endif
wl_list_remove(&c->commit.link);
free(c);