Merge branch 'master' into blender2.8

This commit is contained in:
2018-02-19 17:46:42 +11:00
9 changed files with 32 additions and 16 deletions

View File

@@ -902,7 +902,11 @@ static PyObject *bpy_bmesh_to_mesh(BPy_BMesh *self, PyObject *args)
bm = self->bm;
BM_mesh_bm_to_me(bm, me, (&(struct BMeshToMeshParams){0}));
BM_mesh_bm_to_me(
bm, me,
(&(struct BMeshToMeshParams){
.calc_object_remap = true,
}));
/* we could have the user do this but if they forget blender can easy crash
* since the references arrays for the objects derived meshes are now invalid */