mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-11 12:05:31 +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>
|
2004-11-17 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
* gnome/Makefile.am : kill unused file.
|
* gnome/Makefile.am : kill unused file.
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
CreateNativeObject (new string[0], new GLib.Value[0]);
|
CreateNativeObject (new string[0], new GLib.Value[0]);
|
||||||
Title = title;
|
Title = title;
|
||||||
if (parent != null)
|
if (parent != null)
|
||||||
Parent = parent;
|
TransientFor = parent;
|
||||||
Action = action;
|
Action = action;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -45,7 +45,7 @@
|
||||||
CreateNativeObject (new string[] { "file-system-backend" }, new GLib.Value[] { new GLib.Value (backend) } );
|
CreateNativeObject (new string[] { "file-system-backend" }, new GLib.Value[] { new GLib.Value (backend) } );
|
||||||
Title = title;
|
Title = title;
|
||||||
if (parent != null)
|
if (parent != null)
|
||||||
Parent = parent;
|
TransientFor = parent;
|
||||||
Action = action;
|
Action = action;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue