Fixed bug that showed wrong scaling (m instead of mm) on x axis

This commit is contained in:
jrheinlaender
2012-12-03 18:49:17 +04:30
committed by wmayer
parent c783fad191
commit 654dd1a125

View File

@@ -88,4 +88,6 @@ class Diagram:
del self.thePlot.series[0]
self.thePlot.update()
self.xpoints = [p * self.xscale for p in self.xpoints]
self.ypoints = [p * self.yscale for p in self.ypoints]
self.thePlot.plot(self.xpoints, self.ypoints)