Fix T89347: Edit-mesh make planar faces doesn't update face normals

Invalid face normals were used for tessellation.
This commit is contained in:
Campbell Barton
2021-06-22 18:32:51 +10:00
parent 01234b430b
commit ad9fd47d7b

View File

@@ -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,
});
}