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:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-12-06 13:57:57 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-12-06 13:57:57 +0300
commitb5be65dc0efec52e1fb0074405c541ca5e2c7ea4 (patch)
tree996049089220c657605e7897e45a68c9b5c27b95 /source/blender/depsgraph
parent5ad3cc4e03e1b656fc2afb0dcf89601dd38ae0fa (diff)
Depsgraph: Forgot this in previous commit
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_relations.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_relations.cc b/source/blender/depsgraph/intern/builder/deg_builder_relations.cc
index 5b7b4d4b533..f607fbd5380 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_relations.cc
+++ b/source/blender/depsgraph/intern/builder/deg_builder_relations.cc
@@ -1696,6 +1696,9 @@ void DepsgraphRelationBuilder::build_nodetree(bNodeTree *ntree)
* pipeline. No need to build dependencies for them here.
*/
}
+ else if (id_type == ID_TXT) {
+ /* Ignore script nodes. */
+ }
else if (bnode->type == NODE_GROUP) {
bNodeTree *group_ntree = (bNodeTree *)id;
if ((group_ntree->id.tag & LIB_TAG_DOIT) == 0) {