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:
authorKen Hughes <khughes@pacific.edu>2007-04-03 01:04:53 +0400
committerKen Hughes <khughes@pacific.edu>2007-04-03 01:04:53 +0400
commitdab9f85485664a60976b72535224152bbc10fac3 (patch)
tree0c62f6ce2c3bb27ac4ce388676df92d763252f2a /source/blender/python/api2_2x/Types.c
parentb2084d49ff8dc7f999280dbcd3f03197c848d1af (diff)
Python API
---------- Added missing definition for NMEdgeType in Types modules.
Diffstat (limited to 'source/blender/python/api2_2x/Types.c')
-rw-r--r--source/blender/python/api2_2x/Types.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/Types.c b/source/blender/python/api2_2x/Types.c
index 32bb8f80c3e..d37881bf25b 100644
--- a/source/blender/python/api2_2x/Types.c
+++ b/source/blender/python/api2_2x/Types.c
@@ -171,6 +171,8 @@ PyObject *Types_Init( void )
( PyObject * ) &NMFace_Type );
PyDict_SetItemString( dict, "NMVertType",
( PyObject * ) &NMVert_Type );
+ PyDict_SetItemString( dict, "NMEdgeType",
+ ( PyObject * ) &NMEdge_Type );
PyDict_SetItemString( dict, "NMColType", ( PyObject * ) &NMCol_Type );
PyDict_SetItemString( dict, "MeshType", ( PyObject * ) &Mesh_Type );