Fix: Order of node mixins in custom nodes python template

See T101259. This order makes the poll not work, even when called from
Python. The bundled template shouldn't be a source of errors for node
addons.
This commit is contained in:
Hans Goudey
2022-09-29 11:59:02 -05:00
parent c007e84e9e
commit 912a1e2820

View File

@@ -61,7 +61,7 @@ class MyCustomTreeNode:
# Derived from the Node base type.
class MyCustomNode(Node, MyCustomTreeNode):
class MyCustomNode(MyCustomTreeNode, Node):
# === Basics ===
# Description string
'''A custom node'''