diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2018-11-18 16:20:13 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2018-11-18 16:20:29 +0200 |
commit | 4aa441591c23cc192e6c2589bb5d2f8bb420b9df (patch) | |
tree | 62dc68466379f2ad11eda99a72f432dcfff251ba /platform/osx | |
parent | 4a050568a28898a45cebe350f31bb2af867b32ff (diff) |
[macOS] Disable setWantsLayer on macOS < 10.14
Diffstat (limited to 'platform/osx')
-rw-r--r-- | platform/osx/os_osx.mm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/platform/osx/os_osx.mm b/platform/osx/os_osx.mm index 81dc861f3f..8123aaa427 100644 --- a/platform/osx/os_osx.mm +++ b/platform/osx/os_osx.mm @@ -1237,7 +1237,9 @@ Error OS_OSX::initialize(const VideoMode &p_desired, int p_video_driver, int p_a ERR_FAIL_COND_V(window_object == nil, ERR_UNAVAILABLE); window_view = [[GodotContentView alloc] init]; - [window_view setWantsLayer:TRUE]; + if (@available(macOS 10.14, *)) { + [window_view setWantsLayer:TRUE]; + } float displayScale = 1.0; if (is_hidpi_allowed()) { |