- fixed an error in the Subtract Plugin when working on Geometry objects
This commit is contained in:
committed by
Marius Stanciu
parent
b790f36282
commit
cc8cf4ecbb
@@ -530,7 +530,7 @@ class ToolSub(AppTool):
|
||||
# crate the new_tools dict structure
|
||||
for tool in self.target_geo_obj.tools:
|
||||
self.new_tools[tool] = {}
|
||||
for key, v in self.target_geo_obj.tools[tool]:
|
||||
for key, v in self.target_geo_obj.tools[tool].items():
|
||||
self.new_tools[tool][key] = [] if key == 'solid_geometry' else deepcopy(v)
|
||||
|
||||
# add the promises
|
||||
|
||||
Reference in New Issue
Block a user