missed this in the last commit
This commit is contained in:
parent
7633470496
commit
d6365184e7
|
@ -94,7 +94,7 @@
|
||||||
|
|
||||||
//title
|
//title
|
||||||
NSAttributedString * titleString = [self attributedTitleWithColor: highlighted ? [NSColor whiteColor]
|
NSAttributedString * titleString = [self attributedTitleWithColor: highlighted ? [NSColor whiteColor]
|
||||||
: [NSColor controlTextColor];
|
: [NSColor controlTextColor]];
|
||||||
NSRect titleRect = [self rectForTitleWithString: titleString inBounds: cellFrame];
|
NSRect titleRect = [self rectForTitleWithString: titleString inBounds: cellFrame];
|
||||||
[titleString drawInRect: titleRect];
|
[titleString drawInRect: titleRect];
|
||||||
|
|
||||||
|
@ -102,7 +102,7 @@
|
||||||
if ([[[self objectValue] objectForKey: @"IsFolder"] boolValue])
|
if ([[[self objectValue] objectForKey: @"IsFolder"] boolValue])
|
||||||
{
|
{
|
||||||
NSAttributedString * statusString = [self attributedStatusWithColor: highlighted ? [NSColor whiteColor]
|
NSAttributedString * statusString = [self attributedStatusWithColor: highlighted ? [NSColor whiteColor]
|
||||||
: [NSColor darkGrayColor];
|
: [NSColor darkGrayColor]];
|
||||||
NSRect statusRect = [self rectForStatusWithString: statusString inBounds: cellFrame];
|
NSRect statusRect = [self rectForStatusWithString: statusString inBounds: cellFrame];
|
||||||
[statusString drawInRect: statusRect];
|
[statusString drawInRect: statusRect];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue