[Bf-blender-cvs] [711d3a8] master: Depsgraph: Use proper check whether ID is an object

Sergey Sharybin noreply at git.blender.org
Tue Jul 26 11:37:33 CEST 2016


Commit: 711d3a8a2b0b518b4fe270e733e053fad8932c97
Author: Sergey Sharybin
Date:   Tue Jul 26 10:49:54 2016 +0200
Branches: master
https://developer.blender.org/rB711d3a8a2b0b518b4fe270e733e053fad8932c97

Depsgraph: Use proper check whether ID is an object

Fixes bug which resulted in making it so layers from all
layers are getting updated.

Reported by Juan Pablo Bouza.

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

M	source/blender/depsgraph/intern/nodes/deg_node.cc

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

diff --git a/source/blender/depsgraph/intern/nodes/deg_node.cc b/source/blender/depsgraph/intern/nodes/deg_node.cc
index db807d2..eb408f2 100644
--- a/source/blender/depsgraph/intern/nodes/deg_node.cc
+++ b/source/blender/depsgraph/intern/nodes/deg_node.cc
@@ -182,7 +182,7 @@ void IDDepsNode::init(const ID *id, const string &UNUSED(subdata))
 	this->eval_flags = 0;
 
 	/* For object we initialize layers to layer from base. */
-	if (GS(id) == ID_OB) {
+	if (GS(id->name) == ID_OB) {
 		this->layers = 0;
 	}




More information about the Bf-blender-cvs mailing list