Fixed delta values color which were mixed up.

This commit is contained in:
Virgil Dupras 2010-10-05 09:54:52 +02:00
parent 562123b219
commit fa8e64d04a
1 changed files with 3 additions and 3 deletions

View File

@ -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]];
}
}
}