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
path: root/source
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-06-01 11:10:39 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-06-01 11:10:39 +0300
commit334d823b2bd3e02ee44015452ec1ab375ef86b03 (patch)
tree042207cae79cd1cecc791a04850307080196d809 /source
parent1c292c97305c07ea16188280851527b17028a636 (diff)
Depsgraph: Fix missing updates when modifying armature
Diffstat (limited to 'source')
-rw-r--r--source/blender/depsgraph/intern/nodes/deg_node_component.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/depsgraph/intern/nodes/deg_node_component.cc b/source/blender/depsgraph/intern/nodes/deg_node_component.cc
index c529e2ecfe6..7e49fec051f 100644
--- a/source/blender/depsgraph/intern/nodes/deg_node_component.cc
+++ b/source/blender/depsgraph/intern/nodes/deg_node_component.cc
@@ -230,6 +230,14 @@ void ComponentDepsNode::tag_update(Depsgraph *graph)
foreach (OperationDepsNode *op_node, operations) {
op_node->tag_update(graph);
}
+ // It is possible that tag happens before finalization.
+ if (operations_map != NULL) {
+ GHASH_FOREACH_BEGIN(OperationDepsNode *, op_node, operations_map)
+ {
+ op_node->tag_update(graph);
+ }
+ GHASH_FOREACH_END();
+ }
}
OperationDepsNode *ComponentDepsNode::get_entry_operation()