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:
authorBastien Montagne <montagne29@wanadoo.fr>2015-12-21 01:06:18 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-12-21 01:06:18 +0300
commit6f224941408eda8930489fa440af9539a92badad (patch)
tree2709898ef14dbcb05f50178f992b0dc18cc9e177 /source/blender/depsgraph
parentfdcec62dada7042e9c720086744ac32abf957569 (diff)
NewDepsgraph: Fix typo tagging wrong flag.
Tagging NodeTree->flag instead of NodeTree->id.flag, not sure if this fixes something, but...
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_build_relations.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_build_relations.cc b/source/blender/depsgraph/intern/depsgraph_build_relations.cc
index f027fc8c3c1..2a0dd6f9439 100644
--- a/source/blender/depsgraph/intern/depsgraph_build_relations.cc
+++ b/source/blender/depsgraph/intern/depsgraph_build_relations.cc
@@ -1796,7 +1796,7 @@ void DepsgraphRelationBuilder::build_nodetree(ID *owner, bNodeTree *ntree)
bNodeTree *group_ntree = (bNodeTree *)bnode->id;
if ((group_ntree->id.flag & LIB_DOIT) == 0) {
build_nodetree(owner, group_ntree);
- group_ntree->flag |= LIB_DOIT;
+ group_ntree->id.flag |= LIB_DOIT;
}
OperationKey group_parameters_key(&group_ntree->id,
DEPSNODE_TYPE_PARAMETERS,