edge rotate now keeps edge properties (like seam, crease, bevel weight.. etc)

This commit is contained in:
2012-03-05 01:53:30 +00:00
parent 4d84e869a0
commit 4b940364a1
9 changed files with 50 additions and 41 deletions

View File

@@ -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);