diff options
Diffstat (limited to 'graph.c')
-rw-r--r-- | graph.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -347,7 +347,7 @@ static struct commit_list *first_interesting_parent(struct git_graph *graph) static unsigned short graph_get_current_column_color(const struct git_graph *graph) { - if (!DIFF_OPT_TST(&graph->revs->diffopt, COLOR_DIFF)) + if (graph->revs->diffopt.use_color <= 0) return column_colors_max; return graph->default_column_color; } |