From 582b281761149680af42be66cbe3e1ec58ac81d3 Mon Sep 17 00:00:00 2001 From: Paolo Borelli Date: Mon, 31 Aug 2009 21:56:14 +0200 Subject: [PATCH] Make sure the paper dialog is destroyed with the parent --- gtk/gtkcustompaperunixdialog.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk/gtkcustompaperunixdialog.c b/gtk/gtkcustompaperunixdialog.c index 972ab1640b..7813b58fc7 100644 --- a/gtk/gtkcustompaperunixdialog.c +++ b/gtk/gtkcustompaperunixdialog.c @@ -381,6 +381,7 @@ _gtk_custom_paper_unix_dialog_new (GtkWindow *parent, { gtk_window_set_modal (GTK_WINDOW (result), TRUE); gtk_window_set_transient_for (GTK_WINDOW (result), parent); + gtk_window_set_destroy_with_parent (GTK_WINDOW (result), TRUE); } return result;