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
path: root/source
diff options
context:
space:
mode:
authorWannes Malfait <Wannes>2021-04-16 12:37:49 +0300
committerJacques Lucke <jacques@blender.org>2021-04-16 12:37:49 +0300
commit58818cba40794905f9323080e60884e090f2d388 (patch)
tree11b38b6854adeb89c5c8d8fd617e5c3fa8d02282 /source
parenta2e4d81849d038fcfda9552479c9ce02b9aaf644 (diff)
Fix T87359: set group output in geometry node tree update callback
This also fixes T85511. Differential Revision: https://developer.blender.org/D10970
Diffstat (limited to 'source')
-rw-r--r--source/blender/nodes/geometry/node_geometry_tree.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/nodes/geometry/node_geometry_tree.cc b/source/blender/nodes/geometry/node_geometry_tree.cc
index 2c4c7da64cc..6d3b1d55005 100644
--- a/source/blender/nodes/geometry/node_geometry_tree.cc
+++ b/source/blender/nodes/geometry/node_geometry_tree.cc
@@ -67,6 +67,8 @@ static void geometry_node_tree_get_from_context(const bContext *C,
static void geometry_node_tree_update(bNodeTree *ntree)
{
+ ntreeSetOutput(ntree);
+
/* Needed to give correct types to reroutes. */
ntree_update_reroute_nodes(ntree);
}