We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dc06ca commit ca76ea0Copy full SHA for ca76ea0
meshroom/ui/graph.py
@@ -748,6 +748,8 @@ def duplicateNodesFrom(self, nodes):
748
def canExpandForLoop(self, currentEdge):
749
""" Check if the list attribute can be expanded by looking at all the edges connected to it. """
750
listAttribute = currentEdge.src.root
751
+ if not listAttribute:
752
+ return False
753
srcIndex = listAttribute.index(currentEdge.src)
754
allSrc = [e.src for e in self._graph.edges.values()]
755
for i in range(len(listAttribute)):
0 commit comments