summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorAriel Manzur <punto@godotengine.org>2016-03-02 15:13:46 -0300
committerAriel Manzur <punto@godotengine.org>2016-04-29 10:54:25 -0300
commitde3ed61fc54b7815f0887f03ebea74381d9c0587 (patch)
treee8a0272afefb6721eb0934a4a6b1cf5b144810f8 /platform
parentb50c00ff9065ee0073c79bd5c3f11296a5f6965f (diff)
I think this is ok, "resizable" property might change
Diffstat (limited to 'platform')
-rw-r--r--platform/osx/os_osx.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/osx/os_osx.mm b/platform/osx/os_osx.mm
index 6af2f347aa..c814932dc4 100644
--- a/platform/osx/os_osx.mm
+++ b/platform/osx/os_osx.mm
@@ -921,7 +921,7 @@ void OS_OSX::initialize(const VideoMode& p_desired,int p_video_driver,int p_audi
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1070
if (floor(NSAppKitVersionNumber) > NSAppKitVersionNumber10_6) {
[window_view setWantsBestResolutionOpenGLSurface:YES];
- if (current_videomode.resizable)
+ //if (current_videomode.resizable)
[window_object setCollectionBehavior:NSWindowCollectionBehaviorFullScreenPrimary];
}
#endif /*MAC_OS_X_VERSION_MAX_ALLOWED*/