mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-18 17:17:18 +02:00
[core] Init node name with non-empty unique ID
This commit is contained in:
parent
e54127fbf0
commit
4e7de577c2
1 changed files with 2 additions and 1 deletions
|
@ -577,7 +577,8 @@ class BaseNode(BaseObject):
|
|||
self._internalFolder = ""
|
||||
self._sourceCodeFolder = ""
|
||||
|
||||
self._name = None
|
||||
# temporary unique name for this node
|
||||
self._name = f"_{nodeType}_{uuid.uuid1()}"
|
||||
self.graph = None
|
||||
self.dirty = True # whether this node's outputs must be re-evaluated on next Graph update
|
||||
self._chunks = ListModel(parent=self)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue