Skip to content

Commit

Permalink
#2485: Fix display of triggers when dark mode is in use.
Browse files Browse the repository at this point in the history
  • Loading branch information
stuconnolly committed Oct 1, 2018
1 parent c1675de commit 469be89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/SPTableTriggers.m
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ - (void)tableView:(NSTableView *)tableView willDisplayCell:(id)cell forTableColu

id value = [[triggerData objectAtIndex:rowIndex] objectForKey:[tableColumn identifier]];

[cell setTextColor:[value isNSNull] ? [NSColor lightGrayColor] : [NSColor blackColor]];
[cell setTextColor:[value isNSNull] ? [NSColor lightGrayColor] : [NSColor textColor]];
}

/**
Expand Down

0 comments on commit 469be89

Please sign in to comment.