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:
authorCampbell Barton <ideasman42@gmail.com>2018-10-03 05:21:46 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-10-03 05:23:55 +0300
commitfb8d268f6212dfc1a27f048eed25e0ae5622d34b (patch)
treeb9471247b3efc5448842be6ead4bf6e74b43d74f /source/blender/blenkernel/intern/armature_update.c
parent65e577d222f102f8b89fa3f21a6a07e79e36b32b (diff)
Fix T56975: Transform incorrect w/ constraint
Diffstat (limited to 'source/blender/blenkernel/intern/armature_update.c')
-rw-r--r--source/blender/blenkernel/intern/armature_update.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/armature_update.c b/source/blender/blenkernel/intern/armature_update.c
index 92777444cfe..c7c69a74202 100644
--- a/source/blender/blenkernel/intern/armature_update.c
+++ b/source/blender/blenkernel/intern/armature_update.c
@@ -705,6 +705,7 @@ void BKE_pose_bone_done(struct Depsgraph *depsgraph,
copy_m4_m4(pchan_orig->pose_mat, pchan->pose_mat);
copy_m4_m4(pchan_orig->chan_mat, pchan->chan_mat);
copy_v3_v3(pchan_orig->pose_head, pchan->pose_mat[3]);
+ copy_m4_m4(pchan_orig->constinv, pchan->constinv);
BKE_pose_where_is_bone_tail(pchan_orig);
}
}