From 4584d47fc5381eea5f408c1ee809aaac8c058ddc Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Wed, 17 Nov 2004 19:38:32 +0000 Subject: [PATCH] 2004-11-17 Jorn Baayen * gtk/FileChooserDialog.custom : set TransientFor, not Parent. [Fixes #69626] svn path=/trunk/gtk-sharp/; revision=36230 --- ChangeLog | 5 +++++ gtk/FileChooserDialog.custom | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a9c8c22ec..9e29ffa31 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-11-17 Jorn Baayen + + * gtk/FileChooserDialog.custom : set TransientFor, not Parent. + [Fixes #69626] + 2004-11-17 Mike Kestner * gnome/Makefile.am : kill unused file. diff --git a/gtk/FileChooserDialog.custom b/gtk/FileChooserDialog.custom index 7e54c0f6b..60ea8a200 100644 --- a/gtk/FileChooserDialog.custom +++ b/gtk/FileChooserDialog.custom @@ -29,7 +29,7 @@ CreateNativeObject (new string[0], new GLib.Value[0]); Title = title; if (parent != null) - Parent = parent; + TransientFor = parent; Action = action; return; } @@ -45,7 +45,7 @@ CreateNativeObject (new string[] { "file-system-backend" }, new GLib.Value[] { new GLib.Value (backend) } ); Title = title; if (parent != null) - Parent = parent; + TransientFor = parent; Action = action; return; }