Skip to content

Commit

Permalink
feat: draw marker value in white
Browse files Browse the repository at this point in the history
  • Loading branch information
edy555 committed Nov 30, 2019
1 parent 0bfa2c0 commit 481fa99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plot.c
Original file line number Diff line number Diff line change
Expand Up @@ -1604,7 +1604,7 @@ cell_draw_marker_info(int m, int n, int w, int h)
trace_get_value_string_delta(t, buf, sizeof buf, measured[trace[t].channel], markers[mk].index, markers[active_marker].index);
else
trace_get_value_string(t, buf, sizeof buf, measured[trace[t].channel], markers[mk].index);
cell_drawstring_5x7(w, h, buf, xpos, ypos, config.trace_color[t]);
cell_drawstring_5x7(w, h, buf, xpos, ypos, 0xffff);
j++;
}

Expand Down Expand Up @@ -1646,7 +1646,7 @@ cell_draw_marker_info(int m, int n, int w, int h)
cell_drawstring_5x7(w, h, buf, xpos, ypos, config.trace_color[t]);
xpos += 64;
trace_get_value_string(t, buf, sizeof buf, measured[trace[t].channel], idx);
cell_drawstring_5x7(w, h, buf, xpos, ypos, config.trace_color[t]);
cell_drawstring_5x7(w, h, buf, xpos, ypos, 0xffff);
j++;
}

Expand Down

0 comments on commit 481fa99

Please sign in to comment.