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