[Bf-blender-cvs] [953c8b05486] master: UI: Use 'Render Image' for image rendering in the viewport

William Reynish noreply at git.blender.org
Tue Mar 19 21:41:14 CET 2019


Commit: 953c8b05486d260ed5b33473074d3cd3f40d970d
Author: William Reynish
Date:   Tue Mar 19 21:41:12 2019 +0100
Branches: master
https://developer.blender.org/rB953c8b05486d260ed5b33473074d3cd3f40d970d

UI: Use 'Render Image' for image rendering in the viewport

This is more consistent with the main Render menu, and more descriptive

===================================================================

M	release/scripts/startup/bl_ui/space_sequencer.py
M	release/scripts/startup/bl_ui/space_view3d.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index dd0a6e5dc24..d21dc62ab06 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -225,7 +225,7 @@ class SEQUENCER_MT_view(Menu):
 
         layout.separator()
 
-        layout.operator("render.opengl", text="Sequence Render", icon='RENDER_STILL').sequencer = True
+        layout.operator("render.opengl", text="Sequence Render Image", icon='RENDER_STILL').sequencer = True
         props = layout.operator("render.opengl", text="Sequence Render Animation", icon='RENDER_ANIMATION')
         props.animation = True
         props.sequencer = True
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 5e535b7c90c..8786d86838b 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -637,7 +637,7 @@ class VIEW3D_MT_view(Menu):
 
         layout.separator()
 
-        layout.operator("render.opengl", icon='RENDER_STILL')
+        layout.operator("render.opengl", text="Viewport Render Image", icon='RENDER_STILL')
         layout.operator("render.opengl", text="Viewport Render Animation", icon='RENDER_ANIMATION').animation = True
 
         layout.separator()



More information about the Bf-blender-cvs mailing list