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; }