From 582504cc335a9805816b463a4038031b4024073f Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 5 Jun 2014 05:56:47 -0400 Subject: [PATCH] inspector: Actually destroy the property editors We were never finalizing any of the popovers used for editing properties. Fix that. --- gtk/inspector/prop-list.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk/inspector/prop-list.c b/gtk/inspector/prop-list.c index 9d3b8d8b14..4a1c0341b9 100644 --- a/gtk/inspector/prop-list.c +++ b/gtk/inspector/prop-list.c @@ -180,6 +180,8 @@ row_activated (GtkTreeView *tv, gtk_widget_show (popover); + g_signal_connect (popover, "hide", G_CALLBACK (gtk_widget_destroy), NULL); + g_free (name); }