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>2017-12-05 14:58:10 +0300
committerJoshua Leung <aligorith@gmail.com>2017-12-05 14:58:10 +0300
commit52dde11796fcdf1bbf501b7e016b153110fe9761 (patch)
tree5510d33749a33d5c7cb7f93b975d4d8bf5f62267 /release
parent5d96bc9c5a26d2b8372764e7ee7640674f6bf51b (diff)
Simplify UI-names for B-Bone Ease In/Out settings
For more consistency with the other settings, and increased readability when the UI is cramped (and it isn't possible to see the whole names).
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_bone.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_bone.py b/release/scripts/startup/bl_ui/properties_data_bone.py
index 5e0ef5058dd..9fbb28c0f31 100644
--- a/release/scripts/startup/bl_ui/properties_data_bone.py
+++ b/release/scripts/startup/bl_ui/properties_data_bone.py
@@ -188,13 +188,13 @@ class BONE_PT_curved(BoneButtonsPanel, Panel):
row = col.row()
sub = row.column(align=True)
sub.label(text="Scale:")
- sub.prop(bbone, "bbone_scalein", text="Scale In")
- sub.prop(bbone, "bbone_scaleout", text="Scale Out")
+ sub.prop(bbone, "bbone_scalein", text="In")
+ sub.prop(bbone, "bbone_scaleout", text="Out")
sub = row.column(align=True)
sub.label("Easing:")
- sub.prop(bbone, "bbone_easein", text="Ease In")
- sub.prop(bbone, "bbone_easeout", text="Ease Out")
+ sub.prop(bbone, "bbone_easein", text="In")
+ sub.prop(bbone, "bbone_easeout", text="Out")
if pchan:
layout.separator()