Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Beck <software@plasmasolutions.de>2016-05-17 19:08:04 +0300
committerThomas Beck <software@plasmasolutions.de>2016-05-17 19:08:04 +0300
commitdf8097ea2afccf1f78c1a2e938604626c493ffca (patch)
tree68081e6603862cdc01130143ea27d9ba00584c44
parent6cf7cc3393f976df64476666c6b3dc95f796f535 (diff)
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.
-rw-r--r--release/scripts/startup/bl_ui/properties_data_bone.py2
1 files changed, 1 insertions, 1 deletions
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)