Add missing custom-scale when copying bones

This commit is contained in:
Campbell Barton 2016-03-09 11:13:40 +11:00
parent f4e1c1d135
commit 4e66981964
1 changed files with 2 additions and 0 deletions

View File

@ -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;
}