offset nodes in the Node Graph.
- Select node(s).
- Edit -> Offset upstream or
- Edit -> Offset downstream
- Selected nodes are shifted above their first input or below their first output in the Node Graph.
- Ctrl+up arrow or
- Ctrl+up arrow
- Copy 'offsetNodes' folder in your .Natron folder.
- Add following lines to your 'initGui.py' file, where
<path>is the location of 'removeInput' folder.
from <path>.offsetNodes.offsetNodes import *
NatronGui.natron.addMenuCommand('Edit/Offset Up','offsetNodes(True)', QtCore.Qt.Key.Key_Up, QtCore.Qt.KeyboardModifier.AltModifier)
NatronGui.natron.addMenuCommand('Edit/Offset Down','offsetNodes(False)', QtCore.Qt.Key.Key_Down, QtCore.Qt.KeyboardModifier.AltModifier)