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:
authorJoshua Leung <aligorith@gmail.com>2016-01-22 16:08:23 +0300
committerJoshua Leung <aligorith@gmail.com>2016-05-17 17:27:25 +0300
commit96e6d12c533766e3f2d592d150329bd439528035 (patch)
tree67a0ffd06287c13b2969197ad067f02b4fb32172
parentacd85889e244b149fe5ce14be831ea196fad6c44 (diff)
UI Tweak: Rename labels to be easier to read with typical panel widths
-rw-r--r--release/scripts/startup/bl_ui/properties_data_bone.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_bone.py b/release/scripts/startup/bl_ui/properties_data_bone.py
index abf62da3313..1fc63b2554a 100644
--- a/release/scripts/startup/bl_ui/properties_data_bone.py
+++ b/release/scripts/startup/bl_ui/properties_data_bone.py
@@ -375,11 +375,11 @@ class BONE_PT_deform(BoneButtonsPanel, Panel):
sub.prop(bone, "bbone_rollin", text="Roll In")
sub.prop(bone, "bbone_rollout", text="Roll Out")
- sub.label(text="Curve XY:")
- sub.prop(bone, "bbone_curveinx", text="Roll Curve in X")
- sub.prop(bone, "bbone_curveiny", text="Roll Curve in Y")
- sub.prop(bone, "bbone_curveoutx", text="Roll Curve out X")
- sub.prop(bone, "bbone_curveouty", text="Roll Curve out Y")
+ sub.label(text="Curve XY Roll:")
+ sub.prop(bone, "bbone_curveinx", text="In X")
+ sub.prop(bone, "bbone_curveiny", text="In Y")
+ sub.prop(bone, "bbone_curveoutx", text="Out X")
+ sub.prop(bone, "bbone_curveouty", text="Out Y")
sub.label(text="Scale In/Out:")
sub.prop(bone, "bbone_scalein", text="Scale In")