Index: Source/NSWindow.m =================================================================== RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSWindow.m,v retrieving revision 1.303 diff -u -r1.303 NSWindow.m --- Source/NSWindow.m 15 Jan 2004 10:04:04 -0000 1.303 +++ Source/NSWindow.m 17 Jan 2004 04:34:51 -0000 @@ -1378,6 +1378,10 @@ */ - (void) orderFront: (id)sender { + /* WindowMaker doesn't like it when you order the appIcon when the app + isn't active. It shouldn't be necessary anyway. */ + if (self == [NSApp iconWindow] && [NSApp isActive] == NO) + return; [self orderWindow: NSWindowAbove relativeTo: 0]; }