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-23 08:26:24 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-23 08:26:24 +0400
commitd2328154810ec6e4b477ab937908060b237f596e (patch)
tree932d91c1fdbbb95a13360357421917b3d6d43b8b /source/blender/python
parentecb6f1361857bd6eae6e6785fcc1967ff84aae43 (diff)
- swap arg order for BM_face_copy() boolean options.
- use edge example for BM_face_split().
Diffstat (limited to 'source/blender/python')
-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 0717b5e4426..0e6ec9ef9d5 100644
--- a/source/blender/python/bmesh/bmesh_py_types.c
+++ b/source/blender/python/bmesh/bmesh_py_types.c
@@ -723,7 +723,7 @@ static PyObject *bpy_bmface_copy(BPy_BMFace *self, PyObject *args, PyObject *kw)
return NULL;
}
- f_cpy = BM_face_copy(bm, self->f, do_edges, do_verts);
+ f_cpy = BM_face_copy(bm, self->f, do_verts, do_edges);
if (f_cpy) {
return BPy_BMFace_CreatePyObject(bm, f_cpy);