disabledControlTextColor magic ?
disabledControlTextColor magic ?
- Subject: disabledControlTextColor magic ?
- From: "Lars C. Hassing" <email@hidden>
- Date: Thu, 07 Mar 2019 19:33:13 +0000
- Thread-topic: disabledControlTextColor magic ?
I wanted to take a good look at disabledControlTextColor (and othe system
colors), so I made a small test view with
- (void)drawRect:(NSRect)dirtyRect
{
[[NSColor windowBackgroundColor] set];
NSRectFill(dirtyRect);
NSColor *c = [NSColor disabledControlTextColor];
[c set];
NSRectFill(NSMakeRect(5,5,20,20));
[@"disabledControlTextColor" drawInRect:NSMakeRect(30,5,200,20)
withAttributes:@{NSForegroundColorAttributeName : c}];
}
However, the rect always turns up black!
The text is gray, see https://pasteboard.co/I4mjN99.png
How is it possible that disabledControlTextColor only has effect for text ?
/Lars
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden