From 633b14505c20ad2e6a6d96a6100664a45dfe2bd2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristian=20H=C3=B8gsberg?= Date: Thu, 7 Jun 2012 18:08:47 -0400 Subject: [PATCH] shell: Emit destroy signal for when we manually destroy shell surface --- src/shell.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/shell.c b/src/shell.c index 8eb9819..25a9677 100644 --- a/src/shell.c +++ b/src/shell.c @@ -1283,11 +1283,13 @@ shell_handle_surface_destroy(struct wl_listener *listener, void *data) struct shell_surface, surface_destroy_listener); - /* tricky way to check if resource was in fact created */ - if (shsurf->resource.object.implementation != 0) + if (shsurf->resource.client) { wl_resource_destroy(&shsurf->resource); - else + } else { + wl_signal_emit(&shsurf->resource.destroy_signal, + &shsurf->resource); destroy_shell_surface(shsurf); + } } static struct shell_surface * -- 2.7.4