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:15:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-24 19:16:06 +0300
commit12b261be4128f4ea407c4603e7ed6376107c308d (patch)
tree5fa0807d44c29bb17b2639c73fe494a01b0b26c0 /release
parent1cf17b257dd5005ac0060fa1866c7695d332b107 (diff)
UI: disable view context w/ OpenGL anim render
The 3D view menu can GL render from a single view
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_topbar.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_topbar.py b/release/scripts/startup/bl_ui/space_topbar.py
index cd577f446e4..ca954056109 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -570,7 +570,9 @@ class INFO_MT_render(Menu):
props = layout.operator("render.opengl", text="OpenGL Render Image")
props.view_context = False
- layout.operator("render.opengl", text="OpenGL Render Animation").animation = True
+ props = layout.operator("render.opengl", text="OpenGL Render Animation")
+ props.view_context = False
+ props.animation = True
layout.menu("INFO_MT_opengl_render")
layout.separator()