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['y'] = y
data['z'] = z
data['locked'] = False # duplicated node must not be locked
new_node_uuid = str(uuid.uuid4())
new_node = await self.add_node(
node.compute,

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

Loading…
Cancel
Save