Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2022-09-29 19:59:02 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2022-10-03 14:01:46 +0300
commit25cc656003d1b42a88406a78e0cc74a163951136 (patch)
tree7db240c968c37fa380066de862652b172260ee15
parentcc8df686ad7b91f279072529d586d4ecf67f3e38 (diff)
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.
-rw-r--r--release/scripts/templates_py/custom_nodes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/templates_py/custom_nodes.py b/release/scripts/templates_py/custom_nodes.py
index fba94e23d0d..fd2dfe91b39 100644
--- a/release/scripts/templates_py/custom_nodes.py
+++ b/release/scripts/templates_py/custom_nodes.py
@@ -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'''