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 36842ff commit 475f733Copy full SHA for 475f733
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