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...
This commit is contained in:
Joshua Leung 2015-02-28 11:53:17 +13:00
parent 8d2fc99618
commit 9c82a0478f
1 changed files with 2 additions and 2 deletions

View File

@ -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':