diff options
| author | Tony Crisci <tony@dubstepdish.com> | 2018-03-30 16:16:12 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-30 16:16:12 -0400 | 
| commit | 7e0d430a0cee8c24fd4461711f264829b0f67e2e (patch) | |
| tree | d55cdd62bd7470ff67953613c25a3a9b85182f50 /sway/desktop | |
| parent | cf09ea184b891594331240eb860f28975dcb8b8c (diff) | |
| parent | 7eca02301ba309fa909ba9b12cb335f8f944f1ee (diff) | |
| download | sway-7e0d430a0cee8c24fd4461711f264829b0f67e2e.tar.xz | |
Merge branch 'wlroots' into wlroots-xwayland-map
Diffstat (limited to 'sway/desktop')
| -rw-r--r-- | sway/desktop/xdg_shell_v6.c | 3 | ||||
| -rw-r--r-- | sway/desktop/xwayland.c | 21 | 
2 files changed, 6 insertions, 18 deletions
| diff --git a/sway/desktop/xdg_shell_v6.c b/sway/desktop/xdg_shell_v6.c index 25c0cbca..01f38d16 100644 --- a/sway/desktop/xdg_shell_v6.c +++ b/sway/desktop/xdg_shell_v6.c @@ -83,10 +83,9 @@ static void handle_destroy(struct wl_listener *listener, void *data) {  		wl_container_of(listener, sway_xdg_surface, destroy);  	wl_list_remove(&sway_xdg_surface->commit.link);  	wl_list_remove(&sway_xdg_surface->destroy.link); -	struct sway_container *parent = container_view_destroy(sway_xdg_surface->view->swayc); +	container_view_destroy(sway_xdg_surface->view->swayc);  	free(sway_xdg_surface->view);  	free(sway_xdg_surface); -	arrange_windows(parent, -1, -1);  }  void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data) { diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c index 13eaf79a..dfc54e86 100644 --- a/sway/desktop/xwayland.c +++ b/sway/desktop/xwayland.c @@ -109,29 +109,18 @@ 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(struct wl_listener *listener, void *data) {  	struct sway_xwayland_surface *sway_surface =  		wl_container_of(listener, sway_surface, unmap); - +    	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;  } | 
