Cleanup: bmesh src/dst order in API args

This commit is contained in:
2015-05-01 19:30:41 +10:00
parent 5e1c729882
commit a5869945c6
8 changed files with 39 additions and 37 deletions

View File

@@ -253,7 +253,7 @@ static PyObject *bpy_bm_utils_vert_splice(PyObject *UNUSED(self), PyObject *args
}
/* should always succeed */
ok = BM_vert_splice(bm, py_vert->v, py_vert_target->v);
ok = BM_vert_splice(bm, py_vert_target->v, py_vert->v);
BLI_assert(ok == true);
UNUSED_VARS_NDEBUG(ok);