From d6365184e7e628b13935bc0f8fdb3bf2c7760c25 Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Wed, 15 Aug 2007 03:15:13 +0000 Subject: [PATCH] missed this in the last commit --- macosx/FileNameCell.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macosx/FileNameCell.m b/macosx/FileNameCell.m index 47673b23a..2ca87b705 100644 --- a/macosx/FileNameCell.m +++ b/macosx/FileNameCell.m @@ -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]; }