*** empty log message ***

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@19235 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Eric Sersale 2004-05-04 12:46:48 +00:00
parent 7102ce46f9
commit dc4eb1619b
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-05-04 Enrico Sersale <enrico@imago.ro>
* Source/NSWindow.m ([NSWindow -sendEvent:]): Doesn't makeKeyAndOrderFront
if _windowLevel == NSDesktopWindowLevel
2004-04-27 Adam Fedor <fedor@gnu.org>
* Source/NSApplication.m ([NSAppIconView -drawRect:]): Draw dot when

View file

@ -2908,7 +2908,7 @@ Code shared with [NSPanel -sendEvent:], remember to update both places.
if (_f.has_closed == NO)
{
v = [_contentView hitTest: [theEvent locationInWindow]];
if (_f.is_key == NO)
if (_f.is_key == NO && _windowLevel != NSDesktopWindowLevel)
{
[self makeKeyAndOrderFront: self];
}