- Markers Plugin - fixed issue when adding existing markers to an external Geometry object - done
This commit is contained in:
@@ -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()):
|
||||||
|
|||||||
Reference in New Issue
Block a user