mirror of https://github.com/stella-emu/stella.git
Fix issues with About dialog in dark mode on macOS (fixes #748).
Note that this only works with macOS 10.14 and above. Someone with more Mac experience will have to fix it for older versions.
This commit is contained in:
parent
9d292185c0
commit
3b10550cba
|
@ -95,6 +95,11 @@ static AboutBox *sharedInstance = nil;
|
|||
withRTF:[creditsString RTFFromRange:
|
||||
NSMakeRange( 0, [creditsString length] )
|
||||
documentAttributes:@{NSDocumentTypeDocumentAttribute: NSRTFTextDocumentType}]];
|
||||
if (@available(macOS 10.14, *)) {
|
||||
creditsField.usesAdaptiveColorMappingForDarkAppearance = true;
|
||||
} else {
|
||||
// Fallback on earlier versions
|
||||
}
|
||||
|
||||
// Prepare some scroll info
|
||||
creditsBounds = [creditsField bounds];
|
||||
|
|
Loading…
Reference in New Issue