mirror of
https://github.com/gnustep/libs-back.git
synced 2025-04-22 15:31:14 +00:00
* 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:
parent
bdc97710e0
commit
24eff104fa
2 changed files with 10 additions and 0 deletions
|
@ -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,
|
||||
|
|
|
@ -91,6 +91,8 @@
|
|||
break;
|
||||
case FALSE:
|
||||
{
|
||||
[NSApp deactivate];
|
||||
flags._eventHandled = YES;
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue