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>2016-03-09 03:13:40 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-03-09 03:13:40 +0300
commit4e669819647481e5106952abcfffe50ef273ac82 (patch)
tree05cb3a71c3bd34ffe645b677bd67953552cfb51f /source/blender/blenkernel
parentf4e1c1d135c4775501d11d03b11a456806e1bd61 (diff)
Add missing custom-scale when copying bones
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/intern/action.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/action.c b/source/blender/blenkernel/intern/action.c
index b77ae45e94d..3e1cf6a74a4 100644
--- a/source/blender/blenkernel/intern/action.c
+++ b/source/blender/blenkernel/intern/action.c
@@ -922,6 +922,8 @@ void BKE_pose_channel_copy_data(bPoseChannel *pchan, const bPoseChannel *pchan_f
if (pchan->custom) {
id_us_plus(&pchan->custom->id);
}
+
+ pchan->custom_scale = pchan_from->custom_scale;
}