- Markers Plugin - fixed issue when adding existing markers to an external Geometry object - done

This commit is contained in:
Marius Stanciu
2021-11-01 03:33:55 +02:00
committed by Marius
parent 1e5bc400a5
commit 0a2a8cbe41

View File

@@ -683,13 +683,15 @@ class ToolMarkers(AppTool):
if opt_key.find('tools_') == 0: if opt_key.find('tools_') == 0:
new_data[opt_key] = self.app.options[opt_key] new_data[opt_key] = self.app.options[opt_key]
new_tools = { new_tools.update(
new_tool: { {
'tooldia': tooldia, new_tool: {
'data': deepcopy(new_data), 'tooldia': tooldia,
'solid_geometry': marker_geometry 'data': deepcopy(new_data),
'solid_geometry': marker_geometry
}
} }
} )
# remove possible tools without geometry # remove possible tools without geometry
for tool in list(new_tools.keys()): for tool in list(new_tools.keys()):