Cleanup: bmesh src/dst order in API args
This commit is contained in:
@@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user