From 9c82a0478fbf69a52ef1614d837c9fad6b181adf Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Sat, 28 Feb 2015 11:53:17 +1300 Subject: 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... --- release/scripts/startup/bl_ui/space_dopesheet.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'release/scripts/startup') 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': -- cgit v1.2.3