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/ui/space_info.py')
-rw-r--r--release/scripts/ui/space_info.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py
index 4a08e2f62c3..d8b18b57cf9 100644
--- a/release/scripts/ui/space_info.py
+++ b/release/scripts/ui/space_info.py
@@ -275,18 +275,18 @@ class INFO_MT_render(bpy.types.Menu):
# rd = context.scene.render
- layout.operator("screen.render", text="Render Image", icon='RENDER_STILL')
- layout.operator("screen.render", text="Render Animation", icon='RENDER_ANIMATION').animation = True
+ layout.operator("render.render", text="Render Image", icon='RENDER_STILL')
+ layout.operator("render.render", text="Render Animation", icon='RENDER_ANIMATION').animation = True
layout.separator()
- layout.operator("screen.opengl_render", text="OpenGL Render Image")
- layout.operator("screen.opengl_render", text="OpenGL Render Animation").animation = True
+ layout.operator("render.opengl", text="OpenGL Render Image")
+ layout.operator("render.opengl", text="OpenGL Render Animation").animation = True
layout.separator()
- layout.operator("screen.render_view_show")
- layout.operator("screen.play_rendered_anim")
+ layout.operator("render.view_show")
+ layout.operator("render.play_rendered_anim")
class INFO_MT_help(bpy.types.Menu):