From 91000b5e76dfb5515f8148aa71dc2ee41ab511a9 Mon Sep 17 00:00:00 2001 From: "Devin J. Pohly" Date: Thu, 23 Jul 2020 17:16:02 -0400 Subject: [PATCH] xcursor_manager is not automatically destroyed --- dwl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dwl.c b/dwl.c index c471614..c5a5469 100644 --- a/dwl.c +++ b/dwl.c @@ -1653,6 +1653,7 @@ main(int argc, char *argv[]) /* Once wl_display_run returns, we shut down the server. */ wlr_xwayland_destroy(xwayland); wl_display_destroy_clients(dpy); + wlr_xcursor_manager_destroy(cursor_mgr); wl_display_destroy(dpy); return EXIT_SUCCESS;