mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-22 21:46:28 +02:00
[graph] fix command line invalidation for "no-uid" attributes
mark node dirty even if no uid is impacted by the attribute change, since updateInternals must be called to update the command line.
This commit is contained in:
parent
dc5d80b5bd
commit
9aca41be27
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ class Attribute(BaseObject):
|
||||||
self.valueChanged.emit()
|
self.valueChanged.emit()
|
||||||
|
|
||||||
def requestGraphUpdate(self):
|
def requestGraphUpdate(self):
|
||||||
if self.node.graph and self.attributeDesc.uid:
|
if self.node.graph:
|
||||||
self.node.graph.markNodesDirty(self.node)
|
self.node.graph.markNodesDirty(self.node)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue