Commit: e28ffaf81cc6204dc603639e1867adfd3d914362
Author: Sergey Sharybin
Date:   Fri Jul 18 15:14:52 2014 +0600
https://developer.blender.org/rBe28ffaf81cc6204dc603639e1867adfd3d914362

Fix wrong interface flags combination in inverse kinematics panel

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

M       release/scripts/startup/bl_ui/properties_data_bone.py

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

diff --git a/release/scripts/startup/bl_ui/properties_data_bone.py 
b/release/scripts/startup/bl_ui/properties_data_bone.py
index 0f5039a..c07e9d6 100644
--- a/release/scripts/startup/bl_ui/properties_data_bone.py
+++ b/release/scripts/startup/bl_ui/properties_data_bone.py
@@ -253,7 +253,7 @@ class BONE_PT_inverse_kinematics(BoneButtonsPanel, Panel):
         active = pchan.is_in_ik_chain
 
         split = layout.split(percentage=0.25)
-        split.prop(pchan, "lock_ik_x", text="X", icon_only=True)
+        split.prop(pchan, "lock_ik_x", text="X")
         split.active = active
         row = split.row()
         row.prop(pchan, "ik_stiffness_x", text="Stiffness", slider=True)
@@ -270,7 +270,7 @@ class BONE_PT_inverse_kinematics(BoneButtonsPanel, Panel):
         sub.active = pchan.lock_ik_x is False and pchan.use_ik_limit_x and 
active
 
         split = layout.split(percentage=0.25)
-        split.prop(pchan, "lock_ik_y", text="Y", icon_only=True)
+        split.prop(pchan, "lock_ik_y", text="Y")
         split.active = active
         row = split.row()
         row.prop(pchan, "ik_stiffness_y", text="Stiffness", slider=True)
@@ -288,7 +288,7 @@ class BONE_PT_inverse_kinematics(BoneButtonsPanel, Panel):
         sub.active = pchan.lock_ik_y is False and pchan.use_ik_limit_y and 
active
 
         split = layout.split(percentage=0.25)
-        split.prop(pchan, "lock_ik_z", text="Z", icon_only=True)
+        split.prop(pchan, "lock_ik_z", text="Z")
         split.active = active
         sub = split.row()
         sub.prop(pchan, "ik_stiffness_z", text="Stiffness", slider=True)

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to