|
|
@ -95,6 +95,8 @@ static void maximize(struct roots_view *view, bool maximized) {
|
|
|
|
static void handle_destroy(struct wl_listener *listener, void *data) {
|
|
|
|
static void handle_destroy(struct wl_listener *listener, void *data) {
|
|
|
|
struct roots_xwayland_surface *roots_surface =
|
|
|
|
struct roots_xwayland_surface *roots_surface =
|
|
|
|
wl_container_of(listener, roots_surface, destroy);
|
|
|
|
wl_container_of(listener, roots_surface, destroy);
|
|
|
|
|
|
|
|
struct wlr_xwayland_surface *xwayland_surface =
|
|
|
|
|
|
|
|
roots_surface->view->xwayland_surface;
|
|
|
|
wl_list_remove(&roots_surface->destroy.link);
|
|
|
|
wl_list_remove(&roots_surface->destroy.link);
|
|
|
|
wl_list_remove(&roots_surface->request_configure.link);
|
|
|
|
wl_list_remove(&roots_surface->request_configure.link);
|
|
|
|
wl_list_remove(&roots_surface->request_move.link);
|
|
|
|
wl_list_remove(&roots_surface->request_move.link);
|
|
|
@ -102,6 +104,9 @@ static void handle_destroy(struct wl_listener *listener, void *data) {
|
|
|
|
wl_list_remove(&roots_surface->request_maximize.link);
|
|
|
|
wl_list_remove(&roots_surface->request_maximize.link);
|
|
|
|
wl_list_remove(&roots_surface->map_notify.link);
|
|
|
|
wl_list_remove(&roots_surface->map_notify.link);
|
|
|
|
wl_list_remove(&roots_surface->unmap_notify.link);
|
|
|
|
wl_list_remove(&roots_surface->unmap_notify.link);
|
|
|
|
|
|
|
|
if (xwayland_surface->mapped) {
|
|
|
|
|
|
|
|
wl_list_remove(&roots_surface->view->link);
|
|
|
|
|
|
|
|
}
|
|
|
|
view_destroy(roots_surface->view);
|
|
|
|
view_destroy(roots_surface->view);
|
|
|
|
free(roots_surface);
|
|
|
|
free(roots_surface);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -243,6 +248,7 @@ void handle_xwayland_surface(struct wl_listener *listener, void *data) {
|
|
|
|
view->close = close;
|
|
|
|
view->close = close;
|
|
|
|
roots_surface->view = view;
|
|
|
|
roots_surface->view = view;
|
|
|
|
view_init(view, desktop);
|
|
|
|
view_init(view, desktop);
|
|
|
|
|
|
|
|
wl_list_insert(&desktop->views, &view->link);
|
|
|
|
|
|
|
|
|
|
|
|
if (!surface->override_redirect) {
|
|
|
|
if (!surface->override_redirect) {
|
|
|
|
view_setup(view);
|
|
|
|
view_setup(view);
|
|
|
|