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 499c994 commit cca0bb1Copy full SHA for cca0bb1
meshroom/ui/graph.py
@@ -735,15 +735,6 @@ def moveSelectedNodesBy(self, offset: QPoint):
735
position = Position(node.x + offset.x(), node.y + offset.y())
736
self.moveNode(node, position)
737
738
- @Slot(list, QPoint)
739
- def moveNodesBy(self, nodes, offset: QPoint):
740
- """Move all the selected nodes by the given `offset`."""
741
-
742
- with self.groupedGraphModification("Move Nodes"):
743
- for node in nodes:
744
- position = Position(node.x + offset.x(), node.y + offset.y())
745
- self.moveNode(node, position)
746
747
@Slot()
748
def removeSelectedNodes(self):
749
"""Remove selected nodes from the graph."""
0 commit comments