Commit: 5c1d5302728cb6d80ce62ba92b90d67ee6376fcf
Author: Thomas Beck
Date:   Tue May 17 18:08:04 2016 +0200
Branches: compositor-2016
https://developer.blender.org/rB5c1d5302728cb6d80ce62ba92b90d67ee6376fcf

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)

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

Reply via email to