- fixed crash when trying to set a workspace in FlatCAM in the Legacy engine 2D mode by disabling this function for the case of 2D mode

- updated the translation files
This commit is contained in:
Marius Stanciu
2019-09-22 17:59:01 +03:00
committed by Marius
parent 956ba36a6a
commit 6238b07826
16 changed files with 2109 additions and 2104 deletions

View File

@@ -85,7 +85,7 @@ class FlatCAMObj(QtCore.QObject):
if self.app.is_legacy is False:
self.shapes = self.app.plotcanvas.new_shape_group()
else:
self.shapes = ShapeCollectionLegacy(obj=self, app=self.app)
self.shapes = ShapeCollectionLegacy(obj=self, app=self.app, name='application')
# self.mark_shapes = self.app.plotcanvas.new_shape_collection(layers=2)
self.mark_shapes = {}