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:
authorCampbell Barton <ideasman42@gmail.com>2018-05-24 19:43:16 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-24 19:43:16 +0300
commitb04b933acf262130b97633786a8325d7c6d4c15c (patch)
treef01aec4fe2f5b8a994eabfdd452c008cd9b383cd /release/scripts/startup/bl_ui/space_topbar.py
parentbef08e63d75074ca8ee4d40954c91aec0b987edf (diff)
UI: use icons in render menu
Diffstat (limited to 'release/scripts/startup/bl_ui/space_topbar.py')
-rw-r--r--release/scripts/startup/bl_ui/space_topbar.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_topbar.py b/release/scripts/startup/bl_ui/space_topbar.py
index ca954056109..7fc36d5d447 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -563,17 +563,17 @@ class INFO_MT_render(Menu):
layout.separator()
- layout.prop_menu_enum(rd, "display_mode", text="Display Mode")
+ layout.prop_menu_enum(rd, "display_mode", text="Display Mode", icon='IMAGE_COL')
layout.prop(rd, "use_lock_interface", text="Lock Interface")
layout.separator()
- props = layout.operator("render.opengl", text="OpenGL Render Image")
+ props = layout.operator("render.opengl", text="OpenGL Render Image", icon='RENDER_STILL')
props.view_context = False
- props = layout.operator("render.opengl", text="OpenGL Render Animation")
+ props = layout.operator("render.opengl", text="OpenGL Render Animation", icon='RENDER_ANIMATION')
props.view_context = False
props.animation = True
- layout.menu("INFO_MT_opengl_render")
+ layout.menu("INFO_MT_opengl_render", icon='SETTINGS')
layout.separator()