UI VSE: Rename OpenGL Render to Sequence Render.

Follows change in the 3D Viewport.
This commit is contained in:
Pablo Vazquez 2018-11-05 15:12:27 +01:00
parent 69fcffb78f
commit 2d3493d50c
1 changed files with 4 additions and 2 deletions

View File

@ -225,11 +225,13 @@ class SEQUENCER_MT_view(Menu):
layout.separator()
layout.operator("render.opengl", text="OpenGL Render", icon='RENDER_STILL').sequencer = True
props = layout.operator("render.opengl", text="OpenGL Render Animation", icon='RENDER_ANIMATION')
layout.operator("render.opengl", text="Sequence Render", icon='RENDER_STILL').sequencer = True
props = layout.operator("render.opengl", text="Sequence Render Animation", icon='RENDER_ANIMATION')
props.animation = True
props.sequencer = True
layout.separator()
layout.menu("INFO_MT_area")