We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 000ba8c commit 8bb8403Copy full SHA for 8bb8403
plugins/cocoaui/DdbTabStrip/DdbTabStrip.m
@@ -160,6 +160,9 @@ - (NSDictionary *)titleAttributesSelected {
160
}
161
162
- (NSColor *)tabBackgroundColor {
163
+ if (@available(macOS 13.0, *)) {
164
+ return NSColor.selectedTextBackgroundColor;
165
+ }
166
NSString *osxMode = [NSUserDefaults.standardUserDefaults stringForKey:@"AppleInterfaceStyle"];
167
BOOL isKey = self.window.isKeyWindow;
168
if ([osxMode isEqualToString:@"Dark"]) {
0 commit comments