kopia lustrzana https://github.com/NanoVNA-Saver/nanovna-saver
Draw marker numbers correctly on R+jX charts
rodzic
3267896b8f
commit
68918172d8
|
@ -2408,8 +2408,8 @@ class RealImaginaryChart(FrequencyChart):
|
|||
y_re = self.getReYPosition(self.data[m.location])
|
||||
y_im = self.getImYPosition(self.data[m.location])
|
||||
|
||||
self.drawMarker(x, y_re, qp, m.color)
|
||||
self.drawMarker(x, y_im, qp, m.color)
|
||||
self.drawMarker(x, y_re, qp, m.color, self.markers.index(m)+1)
|
||||
self.drawMarker(x, y_im, qp, m.color, self.markers.index(m)+1)
|
||||
|
||||
def getImYPosition(self, d: Datapoint) -> int:
|
||||
_, im = RFTools.normalize50(d)
|
||||
|
|
|
@ -14,5 +14,5 @@
|
|||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
version = '0.1.5'
|
||||
debug = False
|
||||
version = '0.1.6alpha'
|
||||
debug = True
|
||||
|
|
Ładowanie…
Reference in New Issue