* Source/NSApplication.m: Make certain that a sheet is always placed

above the window it's supposed to appear relative to.   Change
	to runModalForWindow:relativeToWindow:.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28232 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2009-04-19 04:23:34 +00:00
parent 8369481079
commit 80a3c7d56e
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2009-04-19 00:23-EDT Gregory John Casamento <greg.casamento@gmail.com>
* Source/NSApplication.m: Make certain that a sheet is always placed
above the window it's supposed to appear relative to. Change
to runModalForWindow:relativeToWindow:.
2009-04-18 23:21-EDT Gregory John Casamento <greg.casamento@gmail.com>
* Source/NSScrollView.m: If the scrollview has scrollers,

View file

@ -1849,6 +1849,8 @@ See -runModalForWindow:
relativeToWindow: (NSWindow *)docWindow
{
// FIXME
[theWindow orderWindow: NSWindowAbove
relativeTo: [docWindow windowNumber]];
return [self runModalForWindow: theWindow];
}