- Milling Tool - finished adding the add tool, copy tool, delete tool and tool plot when the target object is Geometry

- in camlib.py fixed the bounds() method for the Geometry objects such that tools in an Geometry object with no geometry will be now ignored for calculating the bounds
This commit is contained in:
Marius Stanciu
2020-11-13 21:44:40 +02:00
committed by Marius Stanciu
parent a59310ab4a
commit 8f9a7fd240
5 changed files with 566 additions and 3 deletions

View File

@@ -5970,7 +5970,8 @@ class App(QtCore.QObject):
self.inform.emit('[ERROR_NOTCL] %s' % _("Selected tool can't be used here. Pick another."))
return
obj.on_tool_from_db_inserted(tool=tool_from_db)
# obj.on_tool_from_db_inserted(tool=tool_from_db)
self.milling_tool.on_tool_from_db_inserted(tool=tool_from_db)
# close the tab and delete it
for idx in range(self.ui.plot_tab_area.count()):