[Bf-blender-cvs] [5c1d530] compositor-2016: Bendy Bones: Small ui tweak

Thomas Beck noreply at git.blender.org
Wed Jun 8 21:47:30 CEST 2016


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)




More information about the Bf-blender-cvs mailing list