Mac: Fix the menu bar not always working for non-.app-bundled apps. Fixes bug #3051.

Alex Szpakowski 2017-09-25 20:49:31 -03:00
parent c44e741bd9
commit fb071a4cd9
1 changed files with 12 additions and 1 deletions

View File

@ -216,6 +216,18 @@ static void Cocoa_DispatchEvent(NSEvent *theEvent)
{
return (BOOL)SDL_SendDropFile(NULL, [filename UTF8String]) && SDL_SendDropComplete(NULL);
}
- (void)applicationDidFinishLaunching:(NSNotification *)notification
{
/* The menu bar of SDL apps which don't have the typical .app bundle
* structure fails to work the first time a window is created (until it's
* de-focused and re-focused), if this call is in Cocoa_RegisterApp instead
* of here. https://bugzilla.libsdl.org/show_bug.cgi?id=3051
*/
if (!SDL_GetHintBoolean(SDL_HINT_MAC_BACKGROUND_APP, SDL_FALSE)) {
[NSApp activateIgnoringOtherApps:YES];
}
}
@end
static SDLAppDelegate *appDelegate = nil;
@ -361,7 +373,6 @@ Cocoa_RegisterApp(void)
if (!SDL_GetHintBoolean(SDL_HINT_MAC_BACKGROUND_APP, SDL_FALSE)) {
[NSApp setActivationPolicy:NSApplicationActivationPolicyRegular];
[NSApp activateIgnoringOtherApps:YES];
}
if ([NSApp mainMenu] == nil) {