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:
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_data_bone.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_bone.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_bone.py b/release/scripts/startup/bl_ui/properties_data_bone.py
index 2c22259d518..4ac10f2050b 100644
--- a/release/scripts/startup/bl_ui/properties_data_bone.py
+++ b/release/scripts/startup/bl_ui/properties_data_bone.py
@@ -212,6 +212,11 @@ class BONE_PT_curved(BoneButtonsPanel, Panel):
row.prop_search(pchan, "bbone_custom_handle_start", ob.pose, "bones", text="In")
row.prop_search(pchan, "bbone_custom_handle_end", ob.pose, "bones", text="Out")
+ row = col.row()
+ row.active = pchan.use_bbone_custom_handles
+ row.prop(pchan, "use_bbone_relative_start_handle", text="Relative")
+ row.prop(pchan, "use_bbone_relative_end_handle", text="Relative")
+