mirror of
https://github.com/AxioDL/amuse.git
synced 2025-08-15 00:19:11 +00:00
10 lines
262 B
Plaintext
10 lines
262 B
Plaintext
#import <AppKit/AppKit.h>
|
|
|
|
void MacOSSetDarkAppearance()
|
|
{
|
|
#if __MAC_OS_X_VERSION_MAX_ALLOWED >= 101400
|
|
if ([NSApp respondsToSelector:@selector(setAppearance:)])
|
|
[NSApp setAppearance:[NSAppearance appearanceNamed:NSAppearanceNameDarkAqua]];
|
|
#endif
|
|
}
|