diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-21 14:47:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-21 14:47:44 +0200 |
commit | 6e6decf38590e85c0c4d72f5215775e604516ad3 (patch) | |
tree | 658bc3a154b8e699679d7f7492ca13717bb9aaab /sway/desktop | |
parent | ce70b9c45c65ae09e2d093520683ba77730d3368 (diff) | |
parent | 17bee33fc9497448f7d3f4121ecf9821bf7b5956 (diff) |
Merge pull request #1834 from emersion/xwayland-no-unmap-on-destroy
Don't unmap on destroy, this is already guaranteed by wlroots
Diffstat (limited to 'sway/desktop')
-rw-r--r-- | sway/desktop/xwayland.c | 5 |
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); } |