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>2015-02-28 01:53:17 +0300
committerJoshua Leung <aligorith@gmail.com>2015-02-28 16:34:46 +0300
commit9c82a0478fbf69a52ef1614d837c9fad6b181adf (patch)
treea649602cf1dc42fc3c49a12e9ddec28863a5719c /release/scripts/startup
parent8d2fc99618ffafcf1635ef10d3718c183b4adcf6 (diff)
UI Tweak: Display labels for Push Down and Stash
I'm still not sure which version is better, but I suspect that with the labels, this might help users figure this out more than if they were just unlabelled icon buttons...
Diffstat (limited to 'release/scripts/startup')
-rw-r--r--release/scripts/startup/bl_ui/space_dopesheet.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_dopesheet.py b/release/scripts/startup/bl_ui/space_dopesheet.py
index f69ab3aaa4e..5358670c2f2 100644
--- a/release/scripts/startup/bl_ui/space_dopesheet.py
+++ b/release/scripts/startup/bl_ui/space_dopesheet.py
@@ -125,8 +125,8 @@ class DOPESHEET_HT_header(Header):
layout.template_ID(st, "action", new="action.new")
row = layout.row(align=True)
- row.operator("action.push_down", text="", icon='NLA_PUSHDOWN')
- row.operator("action.stash", text="", icon='FREEZE')
+ row.operator("action.push_down", text="Push Down", icon='NLA_PUSHDOWN')
+ row.operator("action.stash", text="Stash", icon='FREEZE')
# Grease Pencil mode doesn't need snapping, as it's frame-aligned only
if st.mode != 'GPENCIL':