Skip to content

Commit

Permalink
NLA Editor - iconize the View menu
Browse files Browse the repository at this point in the history
  • Loading branch information
ReinerBforartists committed Nov 27, 2017
1 parent 90644b7 commit b4fe612
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions release/scripts/startup/bl_ui/space_nla.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,19 +114,19 @@ def draw(self, context):
layout.prop(st, "show_local_markers")

layout.separator()
layout.operator("anim.previewrange_set")
layout.operator("anim.previewrange_clear")
layout.operator("nla.previewrange_set")
layout.operator("anim.previewrange_set", icon='BORDER_RECT')
layout.operator("anim.previewrange_clear", icon = "CLEAR")
layout.operator("nla.previewrange_set", icon='BORDER_RECT')

layout.separator()
layout.operator("nla.view_all")
layout.operator("nla.view_selected")
layout.operator("nla.view_frame")
layout.operator("nla.view_all", icon = "VIEWALL")
layout.operator("nla.view_selected", icon = "VIEW_SELECTED")
layout.operator("nla.view_frame", icon = "VIEW_FRAME" )

layout.separator()
layout.operator("screen.area_dupli")
layout.operator("screen.screen_full_area")
layout.operator("screen.screen_full_area", text="Toggle Fullscreen Area").use_hide_panels = True
layout.operator("screen.area_dupli", icon = "NEW_WINDOW")
layout.operator("screen.screen_full_area", icon = "MAXIMIZE_AREA")
layout.operator("screen.screen_full_area", text="Toggle Fullscreen Area", icon = "FULLSCREEN_AREA").use_hide_panels = True


class NLA_MT_select(Menu):
Expand Down

0 comments on commit b4fe612

Please sign in to comment.