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-03-05 05:53:30 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-05 05:53:30 +0400
commit4b940364a1dee78acdfe1ec319b35bb812faee29 (patch)
tree3097b5de3402f23260fcddaeffb02e6752654257 /source/blender/python/bmesh/bmesh_py_utils.c
parent4d84e869a0fd540247a99edbfeca24ffb75644cd (diff)
edge rotate now keeps edge properties (like seam, crease, bevel weight.. etc)
Diffstat (limited to 'source/blender/python/bmesh/bmesh_py_utils.c')
-rw-r--r--source/blender/python/bmesh/bmesh_py_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_utils.c b/source/blender/python/bmesh/bmesh_py_utils.c
index 83c75d775c1..351812cda19 100644
--- a/source/blender/python/bmesh/bmesh_py_utils.c
+++ b/source/blender/python/bmesh/bmesh_py_utils.c
@@ -406,7 +406,7 @@ static PyObject *bpy_bm_utils_face_join(PyObject *UNUSED(self), PyObject *value)
/* Go ahead and join the face!
* --------------------------- */
- f_new = BM_faces_join(bm, face_array, (int)face_seq_len);
+ f_new = BM_faces_join(bm, face_array, (int)face_seq_len, TRUE); /* BMESH_TODO, make optional */
if (f_new) {
return BPy_BMFace_CreatePyObject(bm, f_new);