File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed
Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 5454 filesName = None
5555
5656#========================================================================================
57- version = 'v6.09 '
57+ version = 'v6.10 '
5858
5959open_ws = {}
6060open_displayWindows = {}
Original file line number Diff line number Diff line change 1+ * 6.10
2+ * Fix defineInterpolation gradients plot update by removing lines instead of clearing
13 * 6.09
24 * Fix sync issue causing stale pointer reload by resetting self.itemINTERPOLATION before save
35 * Disable SizeGrid in StatusBar
Original file line number Diff line number Diff line change @@ -361,6 +361,8 @@ def updatePointersPlot(self):
361361
362362 self .pointersPlot_ax .set_visible (True )
363363 self .pointersPlot_ax .clear ()
364+ for line in self .pointersPlot_axGradient .lines : # do no use clear() to keep settings
365+ line .remove ()
364366 self .interactive_pointersPlot .fig .canvas .draw ()
365367
366368 if len (self .X1Coords ) < 2 : return
You can’t perform that action at this time.
0 commit comments