diff --git a/ChangeLog b/ChangeLog index 5ce372f38..682307d7f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -14,6 +14,9 @@ * Headers/NSMenuView.h: (setHorizontal:): added. (isHorizontal): added. + + * Source/NSWindow.m: + (orderWindow:): Display content view before backend window ordering. 2003-04-09 00:38 Alexander Malmberg diff --git a/Source/NSWindow.m b/Source/NSWindow.m index 458463392..6520816a1 100644 --- a/Source/NSWindow.m +++ b/Source/NSWindow.m @@ -1413,6 +1413,13 @@ static NSNotificationCenter *nc = nil; display = YES; } } + + // Draw content before backend window ordering + if (display) + [_contentView display]; + else + [_contentView displayIfNeeded]; + [srv orderwindow: place : otherWin : _windowNum]; if (display) [self display];