aboutsummaryrefslogtreecommitdiff
path: root/sway/desktop/xwayland.c
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2018-03-30 15:47:53 -0400
committerGitHub <noreply@github.com>2018-03-30 15:47:53 -0400
commit7eca02301ba309fa909ba9b12cb335f8f944f1ee (patch)
tree8616074124e558fb6787be9cb3336d61663d9a86 /sway/desktop/xwayland.c
parent1c50d79e1940d9dce6217d0ca19611a19709120a (diff)
parent88f08a42f30c6d79adbc9c1d5d897113fcd3a6f4 (diff)
Merge pull request #1662 from swaywm/workspace-delete-fixes
Fix workspace deletion edge cases
Diffstat (limited to 'sway/desktop/xwayland.c')
-rw-r--r--sway/desktop/xwayland.c20
1 files changed, 4 insertions, 16 deletions
diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c
index 3e08b20e..357c8883 100644
--- a/sway/desktop/xwayland.c
+++ b/sway/desktop/xwayland.c
@@ -109,29 +109,17 @@ static void handle_destroy(struct wl_listener *listener, void *data) {
wl_list_remove(&sway_surface->destroy.link);
wl_list_remove(&sway_surface->request_configure.link);
wl_list_remove(&sway_surface->view->unmanaged_view_link);
-
- struct sway_container *parent = container_view_destroy(sway_surface->view->swayc);
- if (parent) {
- arrange_windows(parent, -1, -1);
- }
-
- free(sway_surface->view);
- free(sway_surface);
+ container_view_destroy(sway_surface->view->swayc);
+ sway_surface->view->swayc = NULL;
+ sway_surface->view->surface = NULL;
}
static void handle_unmap_notify(struct wl_listener *listener, void *data) {
struct sway_xwayland_surface *sway_surface =
wl_container_of(listener, sway_surface, unmap_notify);
-
wl_list_remove(&sway_surface->view->unmanaged_view_link);
wl_list_init(&sway_surface->view->unmanaged_view_link);
-
- // take it out of the tree
- struct sway_container *parent = container_view_destroy(sway_surface->view->swayc);
- if (parent) {
- arrange_windows(parent, -1, -1);
- }
-
+ container_view_destroy(sway_surface->view->swayc);
sway_surface->view->swayc = NULL;
sway_surface->view->surface = NULL;
}