mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 18:27:23 +02:00
[core] BugFix : Dynamic Param with onAttributeChanged behavior should not be applied if CompatibilityNode
If it is a CompatibilityNode, we should only get the value of the attribute to create fully all the attributes instead of throwing an error.
This commit is contained in:
parent
6791f02f2d
commit
8e55257c59
1 changed files with 2 additions and 1 deletions
|
@ -193,6 +193,7 @@ class Attribute(BaseObject):
|
|||
convertedValue = self.validateValue(value)
|
||||
self._value = convertedValue
|
||||
|
||||
if not self.node.isCompatibilityNode:
|
||||
self.node.onAttributeChanged(self)
|
||||
# Request graph update when input parameter value is set
|
||||
# and parent node belongs to a graph
|
||||
|
|
Loading…
Add table
Reference in a new issue