From fa8e64d04aefa6a05eae6fac9104eeabf414ce3e Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Tue, 5 Oct 2010 09:54:52 +0200 Subject: [PATCH] Fixed delta values color which were mixed up. --- cocoa/base/ResultTable.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cocoa/base/ResultTable.m b/cocoa/base/ResultTable.m index b168bf3b..2de472f7 100644 --- a/cocoa/base/ResultTable.m +++ b/cocoa/base/ResultTable.m @@ -129,9 +129,6 @@ http://www.hardcoded.net/licenses/bsd_license NSTextFieldCell *textCell = cell; if (isMarkable) { [textCell setTextColor:[NSColor blackColor]]; - } - else { - [textCell setTextColor:[NSColor blueColor]]; if ([self deltaValuesMode]) { NSInteger i = [[column identifier] integerValue]; if ([_deltaColumns containsIndex:i]) { @@ -139,6 +136,9 @@ http://www.hardcoded.net/licenses/bsd_license } } } + else { + [textCell setTextColor:[NSColor blueColor]]; + } } }