Skip to content

Commit

Permalink
Merge pull request #389 from rjordans/testing
Browse files Browse the repository at this point in the history
Fixing minimum axis label value in RI charts
  • Loading branch information
zarath committed May 8, 2021
2 parents 252d0d2 + 9e85730 commit c821fb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NanoVNASaver/Charts/RI.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def drawValues(self, qp: QtGui.QPainter):
qp.drawText(3, y + 4, str(Value(re, fmt=fmt)))
qp.drawText(self.leftMargin + self.chartWidth + 8, y + 4, str(Value(im, fmt=fmt)))

qp.drawText(3, self.chartHeight + self.topMargin, str(Value(im, fmt=fmt)))
qp.drawText(3, self.chartHeight + self.topMargin, str(Value(min_real, fmt=fmt)))
qp.drawText(self.leftMargin + self.chartWidth + 8,
self.chartHeight + self.topMargin,
str(Value(min_imag, fmt=fmt)))
Expand Down

0 comments on commit c821fb2

Please sign in to comment.