Locked state should not be used when duplicating a node.

pull/1541/head
grossmj 5 years ago
parent 724eda1f35
commit 3f679bd106

@ -1070,6 +1070,7 @@ class Project:
data['x'] = x data['x'] = x
data['y'] = y data['y'] = y
data['z'] = z data['z'] = z
data['locked'] = False # duplicated node must not be locked
new_node_uuid = str(uuid.uuid4()) new_node_uuid = str(uuid.uuid4())
new_node = await self.add_node( new_node = await self.add_node(
node.compute, node.compute,

@ -284,10 +284,6 @@ NODE_DUPLICATE_SCHEMA = {
"z": { "z": {
"description": "Z position of the node", "description": "Z position of the node",
"type": "integer" "type": "integer"
},
"locked": {
"description": "Whether the element locked or not",
"type": "boolean"
} }
}, },
"additionalProperties": False, "additionalProperties": False,

Loading…
Cancel
Save