[Bf-blender-cvs] [4e66981] master: Add missing custom-scale when copying bones

Campbell Barton noreply at git.blender.org
Wed Mar 9 02:35:12 CET 2016


Commit: 4e669819647481e5106952abcfffe50ef273ac82
Author: Campbell Barton
Date:   Wed Mar 9 11:13:40 2016 +1100
Branches: master
https://developer.blender.org/rB4e669819647481e5106952abcfffe50ef273ac82

Add missing custom-scale when copying bones

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

M	source/blender/blenkernel/intern/action.c

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

diff --git a/source/blender/blenkernel/intern/action.c b/source/blender/blenkernel/intern/action.c
index b77ae45..3e1cf6a 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;
 }




More information about the Bf-blender-cvs mailing list