diff options
Diffstat (limited to 'rootston/xdg_shell_v6.c')
| -rw-r--r-- | rootston/xdg_shell_v6.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/rootston/xdg_shell_v6.c b/rootston/xdg_shell_v6.c index 6d7ff494..9ef4fd3b 100644 --- a/rootston/xdg_shell_v6.c +++ b/rootston/xdg_shell_v6.c @@ -201,6 +201,7 @@ static void handle_destroy(struct wl_listener *listener, void *data) {  	wl_list_remove(&roots_xdg_surface->destroy.link);  	wl_list_remove(&roots_xdg_surface->request_move.link);  	wl_list_remove(&roots_xdg_surface->request_resize.link); +	wl_list_remove(&roots_xdg_surface->view->link);  	view_destroy(roots_xdg_surface->view);  	free(roots_xdg_surface);  } @@ -256,6 +257,7 @@ void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data) {  	view->close = close;  	roots_surface->view = view;  	view_init(view, desktop); +	wl_list_insert(&desktop->views, &view->link);  	view_setup(view);  }  | 
