- fixed issue after Geometry object edit; the GCode made from and edited object did not reflect the changes in the object

- in Object UI, the Scale FCDoubleSpinner will no longer work for Return key press due of issues of unwanted scaling on focusOut event
This commit is contained in:
Marius Stanciu
2019-12-09 12:59:01 +02:00
parent e5987f66cb
commit 38756175f6
3 changed files with 18 additions and 11 deletions

View File

@@ -4277,11 +4277,11 @@ class FlatCAMGeoEditor(QtCore.QObject):
for shape in self.storage.get_objects():
fcgeometry.tools[self.multigeo_tool]['solid_geometry'].append(shape.geo)
self.multigeo_tool = None
else:
fcgeometry.solid_geometry = []
# for shape in self.shape_buffer:
for shape in self.storage.get_objects():
fcgeometry.solid_geometry.append(shape.geo)
fcgeometry.solid_geometry = []
# for shape in self.shape_buffer:
for shape in self.storage.get_objects():
fcgeometry.solid_geometry.append(shape.geo)
def update_options(self, obj):
if self.paint_tooldia: