- Milling Tool - more or less made the CNCJob generation for multigeo Geometries to work; still the parameters may not be used

- removed the Generate CNCJob context menu action in the Project Menu as this will not work anymore
This commit is contained in:
Marius Stanciu
2020-12-02 00:13:57 +02:00
committed by Marius
parent e42b1e28be
commit 112588d293
6 changed files with 104 additions and 124 deletions

View File

@@ -5239,8 +5239,6 @@ class AppGeoEditor(QtCore.QObject):
def task_job(editor_obj):
# Link shapes into editor.
with editor_obj.app.proc_container.new(_("Working...")):
editor_obj.app.inform.emit(_("Updating the Geometry object..."))
if editor_obj.multigeo_tool:
fcgeometry.tools[self.multigeo_tool]['solid_geometry'] = []
# for shape in self.shape_buffer:
@@ -5274,6 +5272,7 @@ class AppGeoEditor(QtCore.QObject):
pass
self.deactivate()
editor_obj.app.inform.emit(_("Editor Exit. Geometry object was updated ..."))
self.app.worker_task.emit({'fcn': task_job, 'params': [self]})