[Bf-blender-cvs] [913db2e8a4e] master: Fix T64611: Bone Size property is not copied when a bone is copied

Philipp Oeser noreply at git.blender.org
Tue May 14 22:49:24 CEST 2019


Commit: 913db2e8a4ef84834c6efe04c336aca9fc2851de
Author: Philipp Oeser
Date:   Tue May 14 22:35:07 2019 +0200
Branches: master
https://developer.blender.org/rB913db2e8a4ef84834c6efe04c336aca9fc2851de

Fix T64611: Bone Size property is not copied when a bone is copied

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

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

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

diff --git a/source/blender/blenkernel/intern/action.c b/source/blender/blenkernel/intern/action.c
index 9b321ff4e44..34c50865073 100644
--- a/source/blender/blenkernel/intern/action.c
+++ b/source/blender/blenkernel/intern/action.c
@@ -978,6 +978,7 @@ void BKE_pose_channel_copy_data(bPoseChannel *pchan, const bPoseChannel *pchan_f
   }
 
   pchan->custom_scale = pchan_from->custom_scale;
+  pchan->drawflag = pchan_from->drawflag;
 }
 
 /* checks for IK constraint, Spline IK, and also for Follow-Path constraint.



More information about the Bf-blender-cvs mailing list