mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-22 05:26:29 +02:00
[core] fix Node.isComputed property
This commit is contained in:
parent
451f5d65c0
commit
c214b48aa5
2 changed files with 2 additions and 2 deletions
|
@ -777,7 +777,7 @@ class BaseNode(BaseObject):
|
|||
size = Property(int, getSize, notify=sizeChanged)
|
||||
globalStatusChanged = Signal()
|
||||
globalStatus = Property(str, lambda self: self.getGlobalStatus().name, notify=globalStatusChanged)
|
||||
isComputed = Property(bool, lambda self: self._isComputed(), notify=globalStatusChanged)
|
||||
isComputed = Property(bool, _isComputed, notify=globalStatusChanged)
|
||||
|
||||
|
||||
class Node(BaseNode):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue