From 83d48d24ce0f15ec114fc4c7ebfa321faad27c19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Mon, 15 Jul 2019 23:38:04 +0200 Subject: [PATCH] ServerContextService: Really destroy the main window Otherwise layer surfaces keep piling up --- src/server-context-service.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/server-context-service.c b/src/server-context-service.c index 681073d5..cdf959c0 100644 --- a/src/server-context-service.c +++ b/src/server-context-service.c @@ -238,6 +238,7 @@ make_window (ServerContextService *context) static void destroy_window (ServerContextService *context) { + gtk_widget_destroy (GTK_WIDGET (context->window)); context->window = NULL; }