mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-07-20 04:04:25 +08:00
23 lines
318 B
Plaintext
23 lines
318 B
Plaintext
#import "MacDarkMode.hpp"
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
@implementation MacDarkMode
|
|
|
|
namespace Slic3r {
|
|
namespace GUI {
|
|
|
|
bool mac_dark_mode()
|
|
{
|
|
NSString *style = [[NSUserDefaults standardUserDefaults] stringForKey:@"AppleInterfaceStyle"];
|
|
return style && [style isEqualToString:@"Dark"];
|
|
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|
|
@end
|