aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-04-20 16:24:34 +0100
committeremersion <contact@emersion.fr>2018-04-20 16:24:34 +0100
commit17bee33fc9497448f7d3f4121ecf9821bf7b5956 (patch)
tree62216d8e5fdc9f2258c1718d431a5b1ed963c07b
parent8e32c4a1fb287d1a3675f3359891d909dc2b9456 (diff)
Don't unmap on destroy, this is already guaranteed by wlroots
-rw-r--r--sway/desktop/xwayland.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c
index 46eaa84c..cad9156d 100644
--- a/sway/desktop/xwayland.c
+++ b/sway/desktop/xwayland.c
@@ -257,11 +257,6 @@ static void handle_map(struct wl_listener *listener, void *data) {
static void handle_destroy(struct wl_listener *listener, void *data) {
struct sway_xwayland_view *xwayland_view =
wl_container_of(listener, xwayland_view, destroy);
- struct sway_view *view = &xwayland_view->view;
- struct wlr_xwayland_surface *xsurface = view->wlr_xwayland_surface;
- if (xsurface->mapped) {
- handle_unmap(&xwayland_view->unmap, xsurface);
- }
view_destroy(&xwayland_view->view);
}