Mac: Manage menubar and dock as FULLSCREEN_DESKTOP windows become/resign key.

This commit is contained in:
Ryan C. Gordon 2014-03-02 15:35:24 -05:00
parent 4ca76b3e59
commit 5eccbac4b9
1 changed files with 8 additions and 0 deletions

View File

@ -508,6 +508,10 @@ SetWindowStyle(SDL_Window * window, unsigned int style)
/* Check to see if someone updated the clipboard */
Cocoa_CheckClipboardUpdate(_data->videodata);
if (isFullscreenSpace) {
[NSMenu setMenuBarVisible:NO];
}
}
- (void)windowDidResignKey:(NSNotification *)aNotification
@ -526,6 +530,10 @@ SetWindowStyle(SDL_Window * window, unsigned int style)
if (SDL_GetKeyboardFocus() == _data->window) {
SDL_SetKeyboardFocus(NULL);
}
if (isFullscreenSpace) {
[NSMenu setMenuBarVisible:YES];
}
}
- (void)windowWillEnterFullScreen:(NSNotification *)aNotification