Made sure the window had the correct border when manually being brought back from fullscreen mode.

main
Sam Lantinga 2013-11-11 23:42:43 -08:00
parent cb190b8270
commit 7459b159e0
1 changed files with 3 additions and 0 deletions

View File

@ -460,7 +460,10 @@ GetWindowStyle(SDL_Window * window)
NSWindow *nswindow = _data->nswindow;
if (!(window->flags & SDL_WINDOW_RESIZABLE)) {
Uint32 flags = window->flags;
window->flags &= ~SDL_WINDOW_FULLSCREEN_DESKTOP;
[nswindow setStyleMask:GetWindowStyle(window)];
window->flags = flags;
}
isFullscreen = NO;