From df8097ea2afccf1f78c1a2e938604626c493ffca Mon Sep 17 00:00:00 2001 From: Thomas Beck Date: Tue, 17 May 2016 18:08:04 +0200 Subject: 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. --- release/scripts/startup/bl_ui/properties_data_bone.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/scripts/startup/bl_ui/properties_data_bone.py b/release/scripts/startup/bl_ui/properties_data_bone.py index 99c0d7f37c1..853d45e2396 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) -- cgit v1.2.3