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:
authorWilliam Reynish <william@reynish.com>2009-11-01 21:05:01 +0300
committerWilliam Reynish <william@reynish.com>2009-11-01 21:05:01 +0300
commit29aea786cb6db760fe255b6d9fbe03f09d4652d5 (patch)
tree19e1b19c295d684aa3260bde231dfb7b4ce37135 /release
parente4617d8a5ffe136962665d5e49c251b5db654807 (diff)
Added proper icon for full screen mode. Would be nice to have this button eventually be right-aligned.
Diffstat (limited to 'release')
-rw-r--r--release/datafiles/blenderbuttonsbin195438 -> 194590 bytes
-rw-r--r--release/scripts/ui/space_info.py4
2 files changed, 3 insertions, 1 deletions
diff --git a/release/datafiles/blenderbuttons b/release/datafiles/blenderbuttons
index f9a4b934969..8d47bde6e6e 100644
--- a/release/datafiles/blenderbuttons
+++ b/release/datafiles/blenderbuttons
Binary files differ
diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py
index e0bd1a4764b..9328aad964c 100644
--- a/release/scripts/ui/space_info.py
+++ b/release/scripts/ui/space_info.py
@@ -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.screen, "scene", new="scene.new", unlink="scene.delete")
+ layout.itemS()
+
if rd.multiple_engines:
layout.itemR(rd, "engine", text="")
@@ -59,7 +61,7 @@ class INFO_HT_header(bpy.types.Header):
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):