mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 23:40:49 +00:00
Draw content before backend window ordering
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@16397 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1dfaefe6bd
commit
12f306bd69
2 changed files with 10 additions and 0 deletions
|
@ -14,6 +14,9 @@
|
||||||
* Headers/NSMenuView.h:
|
* Headers/NSMenuView.h:
|
||||||
(setHorizontal:): added.
|
(setHorizontal:): added.
|
||||||
(isHorizontal): added.
|
(isHorizontal): added.
|
||||||
|
|
||||||
|
* Source/NSWindow.m:
|
||||||
|
(orderWindow:): Display content view before backend window ordering.
|
||||||
|
|
||||||
2003-04-09 00:38 Alexander Malmberg <alexander@malmberg.org>
|
2003-04-09 00:38 Alexander Malmberg <alexander@malmberg.org>
|
||||||
|
|
||||||
|
|
|
@ -1413,6 +1413,13 @@ static NSNotificationCenter *nc = nil;
|
||||||
display = YES;
|
display = YES;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Draw content before backend window ordering
|
||||||
|
if (display)
|
||||||
|
[_contentView display];
|
||||||
|
else
|
||||||
|
[_contentView displayIfNeeded];
|
||||||
|
|
||||||
[srv orderwindow: place : otherWin : _windowNum];
|
[srv orderwindow: place : otherWin : _windowNum];
|
||||||
if (display)
|
if (display)
|
||||||
[self display];
|
[self display];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue