Added proper icon for full screen mode. Would be nice to have this button eventually be right-aligned.

This commit is contained in:
William Reynish 2009-11-01 18:05:01 +00:00
parent e4617d8a5f
commit 29aea786cb
4 changed files with 6088 additions and 6113 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 191 KiB

After

Width:  |  Height:  |  Size: 190 KiB

@ -49,6 +49,8 @@ class INFO_HT_header(bpy.types.Header):
layout.template_ID(context.window, "screen", new="screen.new", unlink="screen.delete") layout.template_ID(context.window, "screen", new="screen.new", unlink="screen.delete")
layout.template_ID(context.screen, "scene", new="scene.new", unlink="scene.delete") layout.template_ID(context.screen, "scene", new="scene.new", unlink="scene.delete")
layout.itemS()
if rd.multiple_engines: if rd.multiple_engines:
layout.itemR(rd, "engine", text="") layout.itemR(rd, "engine", text="")
@ -59,7 +61,7 @@ class INFO_HT_header(bpy.types.Header):
layout.itemL(text=scene.statistics()) layout.itemL(text=scene.statistics())
layout.itemO("wm.window_fullscreen_toggle", icon='ICON_ARROW_LEFTRIGHT', text="") layout.itemO("wm.window_fullscreen_toggle", icon='ICON_FULLSCREEN_ENTER', text="")
class INFO_MT_file(bpy.types.Menu): class INFO_MT_file(bpy.types.Menu):

File diff suppressed because it is too large Load Diff

@ -109,8 +109,8 @@ DEF_ICON(ICON_QUIT)
DEF_ICON(ICON_URL) DEF_ICON(ICON_URL)
DEF_ICON(ICON_BLANK037) DEF_ICON(ICON_BLANK037)
DEF_ICON(ICON_BLANK038) DEF_ICON(ICON_BLANK038)
DEF_ICON(ICON_BLANK039) DEF_ICON(ICON_FULLSCREEN_ENTER)
DEF_ICON(ICON_BLANK040) DEF_ICON(ICON_FULLSCREEN_EXIT)
DEF_ICON(ICON_BLANK1) // Not actually blank - this is used all over the place DEF_ICON(ICON_BLANK1) // Not actually blank - this is used all over the place
/* BUTTONS */ /* BUTTONS */