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-04-20 03:23:29 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-20 03:23:29 +0400
commit80ff1984f87dc44e984edb5b84e41f769fa64fee (patch)
tree5885b98cf3cb1c8ad0a820108af63f426b49cd9d /source/blender/python/bmesh
parent384f87cd1cbb3549daa448e499184eec5183ae97 (diff)
bmesh py api: remove bmesh.loops.index_update(), it wasn't working, as joe noticed.
Diffstat (limited to 'source/blender/python/bmesh')
-rw-r--r--source/blender/python/bmesh/bmesh_py_types.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_types.c b/source/blender/python/bmesh/bmesh_py_types.c
index c1404e7ef0a..ee91b19a5a4 100644
--- a/source/blender/python/bmesh/bmesh_py_types.c
+++ b/source/blender/python/bmesh/bmesh_py_types.c
@@ -2201,7 +2201,7 @@ static struct PyMethodDef bpy_bmfaceseq_methods[] = {
static struct PyMethodDef bpy_bmloopseq_methods[] = {
/* odd function, initializes index values */
- {"index_update", (PyCFunction)bpy_bmelemseq_index_update, METH_NOARGS, bpy_bmelemseq_index_update_doc},
+ /* no: index_update() function since we cant iterate over loops */
{NULL, NULL, 0, NULL}
};