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:
Diffstat (limited to 'release/scripts/startup/bl_ui/space_sequencer.py')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index f26da21293f..b91bc2ac3eb 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -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")