- fixed an error due of missing attribute of PlotCanvasLegacy when using Legacy2D graphic engine

- solving deprecation warnings issued by Shapely
- made sure that the Gerber Object geometry is always flattened
This commit is contained in:
Marius Stanciu
2021-09-21 15:55:35 +03:00
committed by Marius
parent 5f417f7156
commit dd029d6ded
17 changed files with 143 additions and 202 deletions

View File

@@ -434,6 +434,9 @@ class PlotCanvasLegacy(QtCore.QObject):
self.canvas.draw()
def on_update_text_hud(self, dx=None, dy=None, x=None, y=None):
self.text_hud.on_update_text_hud(dx=dx, dy=dy, x=x, y=y)
class Thud(QtCore.QObject):
text_changed = QtCore.pyqtSignal(str)