Destroy xwm selection window on destroy

This commit is contained in:
emersion 2017-12-15 00:05:05 +01:00
parent 6b42bfad18
commit 5584f42c1e
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
1 changed files with 3 additions and 0 deletions

View File

@ -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);
}