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:
authorBrecht Van Lommel <brecht@blender.org>2021-05-17 21:18:39 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-05-17 21:18:39 +0300
commit542b8da8315eabe4e8817255b82545b3b431c970 (patch)
tree12f3e4dd5fad220cfa6ff4f904715c0b5fde70a6 /source/blender/python
parent1b0ecb2f891e256eabea9f71575aea207fbee08f (diff)
parent85be72c1cc7317796dcce3ddc6ec2dedd627ff81 (diff)
Merge branch 'blender-v2.93-release'
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/bmesh/bmesh_py_types.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_types.c b/source/blender/python/bmesh/bmesh_py_types.c
index 8654ec3583e..f1a8d450ea5 100644
--- a/source/blender/python/bmesh/bmesh_py_types.c
+++ b/source/blender/python/bmesh/bmesh_py_types.c
@@ -1136,7 +1136,7 @@ static PyObject *bpy_bmesh_from_object(BPy_BMesh *self, PyObject *args, PyObject
return NULL;
}
- me_eval = BKE_mesh_new_from_object(depsgraph, ob_eval, true);
+ me_eval = BKE_mesh_new_from_object(depsgraph, ob_eval, true, false);
need_free = true;
}
else {