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>2012-02-29 18:05:03 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-29 18:05:03 +0400
commit17ee9f77c527db544f041e886ef65e569e63d5f5 (patch)
treec1285b8f4f9cf7592e01dabffc44cb1bb33e63b3 /source/blender/python/bmesh/bmesh_py_api.c
parenta3a6f304038932f13225c1346742c63e15afba7d (diff)
bmesh py api - initial support for selection history.
Diffstat (limited to 'source/blender/python/bmesh/bmesh_py_api.c')
-rw-r--r--source/blender/python/bmesh/bmesh_py_api.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_api.c b/source/blender/python/bmesh/bmesh_py_api.c
index 96604e7337d..b6064c452fe 100644
--- a/source/blender/python/bmesh/bmesh_py_api.c
+++ b/source/blender/python/bmesh/bmesh_py_api.c
@@ -35,6 +35,7 @@
#include "bmesh_py_types.h"
#include "bmesh_py_utils.h"
+#include "bmesh_py_select.h"
#include "BLI_utildefines.h"
@@ -96,6 +97,8 @@ PyObject *BPyInit_bmesh(void)
PyObject *sys_modules = PySys_GetObject("modules"); /* not pretty */
BPy_BM_init_types();
+ BPy_BM_init_select_types();
+
mod = PyModule_Create(&BPy_BM_module_def);