mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 19:45:37 +00:00
2004-11-17 Jorn Baayen <jorn@nl.linux.org>
* gtk/FileChooserDialog.custom : set TransientFor, not Parent. [Fixes #69626] svn path=/trunk/gtk-sharp/; revision=36230
This commit is contained in:
parent
6e6ccc4516
commit
4584d47fc5
|
@ -1,3 +1,8 @@
|
|||
2004-11-17 Jorn Baayen <jorn@nl.linux.org>
|
||||
|
||||
* gtk/FileChooserDialog.custom : set TransientFor, not Parent.
|
||||
[Fixes #69626]
|
||||
|
||||
2004-11-17 Mike Kestner <mkestner@novell.com>
|
||||
|
||||
* gnome/Makefile.am : kill unused file.
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue