missed this in the last commit

This commit is contained in:
Mitchell Livingston 2007-08-15 03:15:13 +00:00
parent 7633470496
commit d6365184e7
1 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@
//title
NSAttributedString * titleString = [self attributedTitleWithColor: highlighted ? [NSColor whiteColor]
: [NSColor controlTextColor];
: [NSColor controlTextColor]];
NSRect titleRect = [self rectForTitleWithString: titleString inBounds: cellFrame];
[titleString drawInRect: titleRect];
@ -102,7 +102,7 @@
if ([[[self objectValue] objectForKey: @"IsFolder"] boolValue])
{
NSAttributedString * statusString = [self attributedStatusWithColor: highlighted ? [NSColor whiteColor]
: [NSColor darkGrayColor];
: [NSColor darkGrayColor]];
NSRect statusRect = [self rectForStatusWithString: statusString inBounds: cellFrame];
[statusString drawInRect: statusRect];
}