* Source/GSToolTips.m (+initialize): Set the level of the tool

* tip
        window to NSPopUpMenuWindowLevel.
        Change suggested by Wolfgang Lux  <wolfgang.lux@gmail.com>



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@36393 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2013-03-20 22:10:38 +00:00
parent 4765d0f314
commit f35d315dfb
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2013-03-20 Fred Kiefer <FredKiefer@gmx.de>
* Source/GSToolTips.m (+initialize): Set the level of the tool tip
window to NSPopUpMenuWindowLevel.
Change suggested by Wolfgang Lux <wolfgang.lux@gmail.com>
2013-03-18 Fred Kiefer <FredKiefer@gmx.de>
* Tests/gui/NSImage/basic.m: Add basic tests for NSImage.

View file

@ -238,7 +238,8 @@ static BOOL restoreMouseMoved;
[NSColor colorWithDeviceRed: 1.0 green: 1.0 blue: 0.90 alpha: 1.0]];
[window setReleasedWhenClosed: NO];
[window setExcludedFromWindowsMenu: YES];
[window setLevel: NSStatusWindowLevel];
// [window setLevel: NSStatusWindowLevel];
[window setLevel: NSPopUpMenuWindowLevel];
[window setAutodisplay: NO];
}