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 f9ec52a commit 1ec8c9cCopy full SHA for 1ec8c9c
meshroom/ui/graph.py
@@ -793,8 +793,8 @@ def collapseForLoop(self, currentEdge):
793
occurence = allSrc.index(listAttribute.at(i)) if listAttribute.at(i) in allSrc else -1
794
if occurence != -1:
795
self.removeNodesFrom(self.graph.edges.at(occurence).dst.node)
796
- # remove the edge from allSrc
797
- allSrc.pop(occurence)
+ # update the edges from allSrc
+ allSrc = [e.src for e in self._graph.edges.values()]
798
799
800
@Slot(QObject)
0 commit comments