[Bf-blender-cvs] [df8097e] master: Bendy Bones: Small ui tweak

Thomas Beck noreply at git.blender.org
Tue May 17 18:11:12 CEST 2016


Commit: df8097ea2afccf1f78c1a2e938604626c493ffca
Author: Thomas Beck
Date:   Tue May 17 18:08:04 2016 +0200
Branches: master
https://developer.blender.org/rBdf8097ea2afccf1f78c1a2e938604626c493ffca

Bendy Bones: Small ui tweak

Change the order of the bending controls ("Curve XY Offsets") so the user can activate both InX and OutX by holding down the left mouse button. This way, it's easy to bend symmetrically on X or Y.

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

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 99c0d7f..853d45e 100644
--- a/release/scripts/startup/bl_ui/properties_data_bone.py
+++ b/release/scripts/startup/bl_ui/properties_data_bone.py
@@ -175,8 +175,8 @@ class BONE_PT_curved(BoneButtonsPanel, Panel):
         sub = row.column(align=True)
         sub.label(text="Curve XY Offsets:")
         sub.prop(bbone, "bbone_curveinx", text="In X")
-        sub.prop(bbone, "bbone_curveiny", text="In Y")
         sub.prop(bbone, "bbone_curveoutx", text="Out X")
+        sub.prop(bbone, "bbone_curveiny", text="In Y")
         sub.prop(bbone, "bbone_curveouty", text="Out Y")
 
         sub = row.column(align=True)




More information about the Bf-blender-cvs mailing list