Merge pull request #23801 from bruvzg/macos_disable_wantslayer_on_pre_mojave
[macOS] Disable setWantsLayer on macOS < 10.14
This commit is contained in:
commit
f769e13c5e
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
ERR_FAIL_COND_V(window_object == nil, ERR_UNAVAILABLE);
|
||||||
|
|
||||||
window_view = [[GodotContentView alloc] init];
|
window_view = [[GodotContentView alloc] init];
|
||||||
[window_view setWantsLayer:TRUE];
|
if (@available(macOS 10.14, *)) {
|
||||||
|
[window_view setWantsLayer:TRUE];
|
||||||
|
}
|
||||||
|
|
||||||
float displayScale = 1.0;
|
float displayScale = 1.0;
|
||||||
if (is_hidpi_allowed()) {
|
if (is_hidpi_allowed()) {
|
||||||
|
|
Loading…
Reference in a new issue