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 168a295 commit b0b5318Copy full SHA for b0b5318
README.md
@@ -89,7 +89,10 @@ if __name__ == '__main__':
89
node_b = graph.create_node('com.chantasticvfx.MyNode', name='Node B', color='#5b162f')
90
91
# connect node a input to node b output.
92
- node_a.set_input(0, node_b.output(0))
+ node_a.set_input(0, node_b.output(0))
93
+
94
+ # auto layout nodes.
95
+ graph.auto_layout_nodes()
96
97
# get the widget and show.
98
graph_widget = graph.widget
0 commit comments