Skip to content

Commit

Permalink
[graph-] fix to implement color_graph_refline option
Browse files Browse the repository at this point in the history
  • Loading branch information
midichef committed Oct 16, 2024
1 parent ed97bb7 commit 62ed654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion visidata/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def draw_reflines(self, scr):
for char_x in range(0, self.plotwidth//2):
has_x_line = char_x in self.reflines_char_x.keys()
if has_x_line or has_y_line:
cattr = colors.color_refline
cattr = colors.color_graph_refline
if has_x_line:
ch = self.reflines_char_x[char_x]
# where two lines cross, draw the vertical line, not the horizontal one
Expand Down

0 comments on commit 62ed654

Please sign in to comment.