Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'space_view3d_copy_attributes.py')
-rw-r--r--space_view3d_copy_attributes.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/space_view3d_copy_attributes.py b/space_view3d_copy_attributes.py
index d6edff27..91f6ea6c 100644
--- a/space_view3d_copy_attributes.py
+++ b/space_view3d_copy_attributes.py
@@ -161,6 +161,8 @@ def pVisScaExec(bone, active, context):
def pDrwExec(bone, active, context):
bone.custom_shape = active.custom_shape
+ bone.use_custom_shape_bone_size = active.use_custom_shape_bone_size
+ bone.custom_shape_scale = active.custom_shape_scale
bone.bone.show_wire = active.bone.show_wire
@@ -188,7 +190,7 @@ def pIKsExec(bone, active, context):
def pBBonesExec(bone, active, context):
object = active.id_data
generic_copy(
- object.data.bones[active.name],
+ object.data.bones[active.name],
object.data.bones[bone.name],
"bbone_")