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:
authorCampbell Barton <ideasman42@gmail.com>2019-08-25 05:41:31 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-08-25 08:49:32 +0300
commit2626a6fca25113b54fca20b4f2cc906a9ed6d5f8 (patch)
tree4eb1826dcbb10b9343e9a1467a702e0b6e552233 /source/blender/editors/mesh
parentbada34c766029b1054b7255fd471b0f90cdda8ce (diff)
Cleanup: remove tessface check when entering edit-mode
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/editmesh_utils.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/editors/mesh/editmesh_utils.c b/source/blender/editors/mesh/editmesh_utils.c
index 2691c10cfb4..748de60abc9 100644
--- a/source/blender/editors/mesh/editmesh_utils.c
+++ b/source/blender/editors/mesh/editmesh_utils.c
@@ -292,10 +292,6 @@ void EDBM_mesh_make(Object *ob, const int select_mode, const bool add_key_index)
Mesh *me = ob->data;
BMesh *bm;
- if (UNLIKELY(!me->mpoly && me->totface)) {
- BKE_mesh_convert_mfaces_to_mpolys(me);
- }
-
bm = BKE_mesh_to_bmesh(me,
ob,
add_key_index,