2.5 - Restored 'Render Anim' button!

After quite a bit of searching, I finally found where the various UI functions were wrapped for use in Py Layouts. 

For the reference of others, check out editors/interface/interface_api.c
This commit is contained in:
Joshua Leung 2009-05-11 06:55:11 +00:00
parent 2ed242656a
commit f1e89051c7
2 changed files with 1 additions and 2 deletions

@ -93,7 +93,7 @@ class RENDER_PT_render(RenderButtonsPanel):
layout.row()
layout.itemO("SCREEN_OT_render", text="RENDER", icon=0) # ICON_SCENE
#layout.itemO("SCREEN_OT_render", text="ANIM", icon=0) # "anim", 1
layout.item_booleanO("SCREEN_OT_render", 'anim', True, text="ANIM", icon=0)
layout.row()
layout.itemR(scene, "start_frame", text="Start")

@ -428,7 +428,6 @@ void BPY_run_ui_scripts(bContext *C, int reload)
/* ****************************************** */
/* Drivers - PyExpression Evaluation */
// XXX Hopefully I haven't committed any PyAPI coding sins here ;) - Aligorith, 2009Apr20
/* for pydrivers (drivers using one-line Python expressions to express relationships between targets) */
PyObject *bpy_pydriver_Dict = NULL;