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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-03-26 17:05:33 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-03-26 17:05:33 +0300
commitb68aceda2f070207f65e2068d11ac9296a7c4b40 (patch)
tree8d8f552336cf7f20b2175aad4493bd3a733a626a /source/blender/python/intern
parent1eaff737fd60eedcae7276c8d80b992e6447b2b5 (diff)
2.5: Remove OOPS code from the outliner space, as discussed
this can be brought back as a new space if someone decides to work on it. This also fixes remaining issues with the outliner tree open and close buttons not working sometimes.
Diffstat (limited to 'source/blender/python/intern')
-rw-r--r--source/blender/python/intern/bpy_ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_ui.c b/source/blender/python/intern/bpy_ui.c
index ca61c0b425b..a6fa5b27aaf 100644
--- a/source/blender/python/intern/bpy_ui.c
+++ b/source/blender/python/intern/bpy_ui.c
@@ -600,7 +600,7 @@ PyObject *BPY_ui_module( void )
PyModule_AddObject( mod, "EMPTY", PyLong_FromSize_t(SPACE_EMPTY) );
PyModule_AddObject( mod, "VIEW3D", PyLong_FromSize_t(SPACE_VIEW3D) );
PyModule_AddObject( mod, "IPO", PyLong_FromSize_t(SPACE_IPO) );
- PyModule_AddObject( mod, "OOPS", PyLong_FromSize_t(SPACE_OOPS) );
+ PyModule_AddObject( mod, "OUTLINER", PyLong_FromSize_t(SPACE_OUTLINER) );
PyModule_AddObject( mod, "BUTS", PyLong_FromSize_t(SPACE_BUTS) );
PyModule_AddObject( mod, "FILE", PyLong_FromSize_t(SPACE_FILE) );
PyModule_AddObject( mod, "IMAGE", PyLong_FromSize_t(SPACE_IMAGE) );