Browse Source

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

Ryan C. Gordon 11 years ago
parent
commit
5eccbac4b9
1 changed files with 8 additions and 0 deletions
  1. 8 0
      src/video/cocoa/SDL_cocoawindow.m

+ 8 - 0
src/video/cocoa/SDL_cocoawindow.m

@@ -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