Skip to content
Permalink
Browse files
#2485: Fix display of triggers when dark mode is in use.
  • Loading branch information
stuconnolly committed Oct 1, 2018
1 parent c1675de commit 469be89
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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]];
}

/**

0 comments on commit 469be89

Please sign in to comment.