- fixed Excellon object move and all the other transformations

This commit is contained in:
Marius Stanciu
2019-03-04 04:41:04 +02:00
parent 85ff3805ae
commit 90ff773546
3 changed files with 85 additions and 7 deletions

View File

@@ -125,7 +125,11 @@ class ToolMove(FlatCAMTool):
# offset
sel_obj.offset((dx, dy))
sel_obj.plot()
sel_obj.replotApertures.emit()
try:
sel_obj.replotApertures.emit()
except:
pass
# Update the object bounding box options
a,b,c,d = sel_obj.bounds()