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>2021-06-22 11:32:51 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-06-22 11:32:51 +0300
commitad9fd47d7b7cfddb3fb518c3138cfb756bc381e2 (patch)
treeea8ad48198361d6fa2dd1d235415590990336301 /source/blender/editors/mesh/editmesh_tools.c
parent01234b430b506daf692fada162a73846109c03c3 (diff)
Fix T89347: Edit-mesh make planar faces doesn't update face normals
Invalid face normals were used for tessellation.
Diffstat (limited to 'source/blender/editors/mesh/editmesh_tools.c')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index a3643b3bc8e..8a13dfd1d41 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -1794,7 +1794,7 @@ static int edbm_face_make_planar_exec(bContext *C, wmOperator *op)
EDBM_update(obedit->data,
&(const struct EDBMUpdate_Params){
.calc_looptri = true,
- .calc_normals = false,
+ .calc_normals = true,
.is_destructive = true,
});
}