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 committed by Philipp Oeser
parent cc8df686ad
commit 25cc656003
Notes: blender-bot 2023-02-14 04:20:36 +01:00
Referenced by issue #100749, Blender LTS: Maintenance Task 3.3
1 changed files with 1 additions and 1 deletions

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'''