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>2018-04-04 12:47:09 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-04-04 12:47:33 +0300
commitc9ad9b260ad014de90b6f4c16af87c274fc951fb (patch)
tree515dbc5953fea98c0229980cdc26c75c9a0f0ecb /source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc
parentfb5a57ab97279728b6a44641ea72d340058057db (diff)
Depsgraph: Pass CoW version of object to armature update done
Diffstat (limited to 'source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc b/source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc
index 328d23a2ced..6a7f9eaea25 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc
+++ b/source/blender/depsgraph/intern/builder/deg_builder_nodes_rig.cc
@@ -267,7 +267,7 @@ void DepsgraphNodeBuilder::build_rig(Object *object)
op_node = add_operation_node(&object->id, DEG_NODE_TYPE_BONE, pchan->name,
function_bind(BKE_pose_bone_done,
_1,
- object,
+ object_cow,
pchan_index),
DEG_OPCODE_BONE_DONE);
op_node->set_as_exit();