mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-02 16:28:51 +02:00
[ui] Check node is valid
This commit is contained in:
parent
d563451a53
commit
87efdda931
1 changed files with 3 additions and 1 deletions
|
@ -39,7 +39,9 @@ Page {
|
|||
if (nodesName !== "")
|
||||
nodesName += ", "
|
||||
var node = _reconstruction.selectedNodes.at(i)
|
||||
nodesName += node.name
|
||||
if(node) {
|
||||
nodesName += node.name
|
||||
}
|
||||
}
|
||||
return nodesName
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue