mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-21 21:16:29 +02:00
Merge pull request #1744 from alicevision/dev/internalAttributes
Add internal attributes in "Notes" tab
This commit is contained in:
commit
ce2085faad
10 changed files with 471 additions and 25 deletions
|
@ -710,7 +710,8 @@ class UIGraph(QObject):
|
|||
""" Upgrade all upgradable CompatibilityNode instances in the graph. """
|
||||
with self.groupedGraphModification("Upgrade all Nodes"):
|
||||
nodes = [n for n in self._graph._compatibilityNodes.values() if n.canUpgrade]
|
||||
for node in nodes:
|
||||
sortedNodes = sorted(nodes, key=lambda x: x.name)
|
||||
for node in sortedNodes:
|
||||
self.upgradeNode(node)
|
||||
|
||||
@Slot()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue