mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 12:00:52 +00:00
* Source/NSWindow.m: (-(void)miniaturize: (id)sender):
Change to prevent miniwindow from disappearing. Apparently uneccessary [self orderOut: self] was causing this issue. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@26501 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
777fed73b2
commit
7fe697acb2
2 changed files with 6 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-05-08 21:04-EDT Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Source/NSWindow.m: (-(void)miniaturize: (id)sender):
|
||||
Change to prevent miniwindow from disappearing. Apparently uneccessary
|
||||
[self orderOut: self] was causing this issue.
|
||||
|
||||
2008-05-08 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Source/NSBitmapImageRep+JPEG.m: Define HAVE_BOOLEAN to avoid
|
||||
|
|
|
@ -2736,10 +2736,7 @@ resetCursorRectsForView(NSView *theView)
|
|||
if (_counterpart != 0)
|
||||
{
|
||||
NSWindow *mini = GSWindowWithNumber(_counterpart);
|
||||
|
||||
[mini orderFront: self];
|
||||
// If the window is still visible, order it out.
|
||||
[self orderOut: self];
|
||||
}
|
||||
[nc postNotificationName: NSWindowDidMiniaturizeNotification
|
||||
object: self];
|
||||
|
|
Loading…
Reference in a new issue