* Source/win32/w32_activate.m: Call -[NSApp deactivate] in response

to a WM_ACTIVEAPPP message reporting that the app lost focus.

This delivers NSApplicationWillResignActiveNotification
and NSApplicationDidResignActiveNotification, hides panels, etc.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@31206 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Eric Wasylishen 2010-08-30 05:53:30 +00:00
parent bdc97710e0
commit 24eff104fa
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,11 @@
2010-08-29 Eric Wasylishen <ewasylishen@gmail.com>
* Source/win32/w32_activate.m: Call -[NSApp deactivate] in response
to a WM_ACTIVEAPPP message reporting that the app lost focus.
This delivers NSApplicationWillResignActiveNotification
and NSApplicationDidResignActiveNotification, hides panels, etc.
2010-08-24 Eric Wasylishen <ewasylishen@gmail.com>
* Source/win32/WIN32Server.m: Handle Page Down and Page Up keys,

View file

@ -91,6 +91,8 @@
break;
case FALSE:
{
[NSApp deactivate];
flags._eventHandled = YES;
}
break;