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:
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_animviz.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_animviz.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/properties_animviz.py b/release/scripts/startup/bl_ui/properties_animviz.py
index eb031b54caa..c031316c219 100644
--- a/release/scripts/startup/bl_ui/properties_animviz.py
+++ b/release/scripts/startup/bl_ui/properties_animviz.py
@@ -43,7 +43,8 @@ class MotionPathButtonsPanel:
if mps.type == 'CURRENT_FRAME':
col = layout.column(align=True)
- col.prop(mps, "frame_before", text="Frame Range Before")
+ col.label(text="Frame Range")
+ col.prop(mps, "frame_before", text="Before")
col.prop(mps, "frame_after", text="After")
col.prop(mps, "frame_step", text="Step")
elif mps.type == 'RANGE':
@@ -55,7 +56,8 @@ class MotionPathButtonsPanel:
else:
sub.operator("object.paths_range_update", text="", icon='TIME')
sub = row.column(align=True)
- sub.prop(mps, "frame_start", text="Frame Range Start")
+ sub.label(text="Frame Range")
+ sub.prop(mps, "frame_start", text="Start")
sub.prop(mps, "frame_end", text="End")
sub.prop(mps, "frame_step", text="Step")
@@ -63,9 +65,11 @@ class MotionPathButtonsPanel:
col = layout.column(align=True)
col.enabled = False
if bones:
- col.prop(mpath, "frame_start", text="Bone Cache From")
+ col.label(text="Bone Cache")
+ col.prop(mpath, "frame_start", text="From")
else:
- col.prop(mpath, "frame_start", text="Cache From")
+ col.label(text="Cache")
+ col.prop(mpath, "frame_start", text="From")
col.prop(mpath, "frame_end", text="To")
row = layout.row(align=True)