diff --git a/ChangeLog b/ChangeLog index 13cba9014..d1c8bee0f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-05-08 21:04-EDT Gregory John Casamento + + * 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 * Source/NSBitmapImageRep+JPEG.m: Define HAVE_BOOLEAN to avoid diff --git a/Source/NSWindow.m b/Source/NSWindow.m index 74bb278e0..1fe57e454 100644 --- a/Source/NSWindow.m +++ b/Source/NSWindow.m @@ -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];