diff options
Diffstat (limited to 'Source')
-rw-r--r-- | Source/TableContent.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/TableContent.m b/Source/TableContent.m index 08f0aafb..18cd8e78 100644 --- a/Source/TableContent.m +++ b/Source/TableContent.m @@ -1909,7 +1909,7 @@ // Change the text color back to black // This is necessary because NSTableView reuses // the NSCell to draw further rows in the column - [cell setTextColor:[NSColor blackColor]]; + [cell setTextColor:([[cell stringValue] isEqualToString:[prefs objectForKey:@"NullValue"]] && [[column objectForKey:@"null"] boolValue]) ? [NSColor lightGrayColor] : [NSColor blackColor]]; } } } |