[Bf-blender-cvs] [7df1983bf98] blender2.8: Fix compilation error

Sergey Sharybin noreply at git.blender.org
Tue Jan 16 12:48:43 CET 2018


Commit: 7df1983bf98321d4a547a2f7996714369f0f8f11
Author: Sergey Sharybin
Date:   Tue Jan 16 12:48:33 2018 +0100
Branches: blender2.8
https://developer.blender.org/rB7df1983bf98321d4a547a2f7996714369f0f8f11

Fix compilation error

===================================================================

M	source/blender/depsgraph/intern/builder/deg_builder_relations_impl.h

===================================================================

diff --git a/source/blender/depsgraph/intern/builder/deg_builder_relations_impl.h b/source/blender/depsgraph/intern/builder/deg_builder_relations_impl.h
index 5b1f7be8e45..7853bb9ca70 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_relations_impl.h
+++ b/source/blender/depsgraph/intern/builder/deg_builder_relations_impl.h
@@ -180,7 +180,7 @@ bool DepsgraphRelationBuilder::is_nodetree_node_dependency(
 		return false;
 	}
 	/* Check if this is actually a node tree. */
-	if (GS(op_from->owner->owner->id->name) != ID_NT) {
+	if (GS(op_from->owner->owner->id_orig->name) != ID_NT) {
 		return false;
 	}
 	/* Different node trees. */



More information about the Bf-blender-cvs mailing list