Destroy xwm selection window on destroy
This commit is contained in:
parent
6b42bfad18
commit
5584f42c1e
|
@ -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…
Reference in New Issue