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:
authorWillian Padovani Germano <wpgermano@gmail.com>2006-12-30 21:28:49 +0300
committerWillian Padovani Germano <wpgermano@gmail.com>2006-12-30 21:28:49 +0300
commit91b2bc5c2344220aa395d5e7d6e2fd5c777b6218 (patch)
tree8c593d3d29da0b391e3f123dff9743a7266e7847 /source/blender/python/api2_2x/Window.c
parent822a88959bb2961ec1b5391b1fd01ebbece7b1df (diff)
Python API:
-Added missing access to Node win theme (thanks Mickaƫl Le-bihan for pointing) and also options group and group_active. -Added Node space to Window.Types dict. -Tiny update to the save theme script version numbers (keeping 2.42 for now to avoid popups, but should change to 2.43 right before release). BTW: Happy New Year everyone :).
Diffstat (limited to 'source/blender/python/api2_2x/Window.c')
-rw-r--r--source/blender/python/api2_2x/Window.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/Window.c b/source/blender/python/api2_2x/Window.c
index 175e8a7b18b..eaca5e3e5e3 100644
--- a/source/blender/python/api2_2x/Window.c
+++ b/source/blender/python/api2_2x/Window.c
@@ -1374,6 +1374,7 @@ PyObject *Window_Init( void )
PyConstant_Insert( d, "NLA", PyInt_FromLong( SPACE_NLA ) );
PyConstant_Insert( d, "SCRIPT", PyInt_FromLong( SPACE_SCRIPT ) );
PyConstant_Insert( d, "TIME", PyInt_FromLong( SPACE_TIME ) );
+ PyConstant_Insert( d, "NODE", PyInt_FromLong( SPACE_NODE ) );
PyModule_AddObject( submodule, "Types", Types );
}