Destroy xwm selection window on destroy

master
emersion 7 years ago
parent 6b42bfad18
commit 5584f42c1e
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48

@ -1090,6 +1090,9 @@ void xwm_destroy(struct wlr_xwm *xwm) {
if (!xwm) {
return;
}
if (xwm->selection_window) {
xcb_destroy_window(xwm->xcb_conn, xwm->selection_window);
}
if (xwm->cursor) {
xcb_free_cursor(xwm->xcb_conn, xwm->cursor);
}

Loading…
Cancel
Save