1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

macOS: Fixed a crash on versions before 10.9

This commit is contained in:
ed 2019-01-16 17:35:48 +00:00
parent ab68b98dae
commit 6ff5af9c43

View file

@ -123,7 +123,9 @@ public:
if (! [window isOpaque])
[window setBackgroundColor: [NSColor clearColor]];
[view setAppearance: [NSAppearance appearanceNamed: NSAppearanceNameAqua]];
#if defined (MAC_OS_X_VERSION_10_9) && (MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_9)
[view setAppearance: [NSAppearance appearanceNamed: NSAppearanceNameAqua]];
#endif
#endif
[window setHasShadow: ((windowStyleFlags & windowHasDropShadow) != 0)];