mirror of
https://github.com/Ryujinx/SDL.git
synced 2024-12-25 09:05:28 +00:00
Only show the window if it's supposed to be shown.
This commit is contained in:
parent
c663d731f1
commit
9245c93044
|
@ -613,9 +613,12 @@ SetWindowStyle(SDL_Window * window, unsigned int style)
|
|||
window->h = 0;
|
||||
[self windowDidResize:aNotification];
|
||||
|
||||
/* FIXME: Why does the window get hidden? */
|
||||
if (window->flags & SDL_WINDOW_SHOWN) {
|
||||
Cocoa_ShowWindow(SDL_GetVideoDevice(), window);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
-(NSApplicationPresentationOptions)window:(NSWindow *)window willUseFullScreenPresentationOptions:(NSApplicationPresentationOptions)proposedOptions
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue