NewDepsgraph: Fix typo tagging wrong flag.

Tagging NodeTree->flag instead of NodeTree->id.flag, not sure if this fixes something, but...
This commit is contained in:
Bastien Montagne 2015-12-20 23:06:18 +01:00
parent fdcec62dad
commit 6f22494140
1 changed files with 1 additions and 1 deletions

View File

@ -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,