From dab9f85485664a60976b72535224152bbc10fac3 Mon Sep 17 00:00:00 2001 From: Ken Hughes Date: Mon, 2 Apr 2007 21:04:53 +0000 Subject: [PATCH] Python API ---------- Added missing definition for NMEdgeType in Types modules. --- source/blender/python/api2_2x/Types.c | 2 ++ 1 file changed, 2 insertions(+) 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 );