[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:
Yann Lanthony 2018-02-08 19:11:47 +01:00
parent dc5d80b5bd
commit 9aca41be27

View file

@ -189,7 +189,7 @@ class Attribute(BaseObject):
self.valueChanged.emit()
def requestGraphUpdate(self):
if self.node.graph and self.attributeDesc.uid:
if self.node.graph:
self.node.graph.markNodesDirty(self.node)
@property