[Bf-blender-cvs] [ae348081145] master: Fix missing normal update in edit-mesh blend-from shape operator

Campbell Barton noreply at git.blender.org
Tue Jun 15 06:55:29 CEST 2021


Commit: ae348081145110f03825f48adbdd97b14a166af3
Author: Campbell Barton
Date:   Tue Jun 15 14:35:43 2021 +1000
Branches: master
https://developer.blender.org/rBae348081145110f03825f48adbdd97b14a166af3

Fix missing normal update in edit-mesh blend-from shape operator

===================================================================

M	source/blender/editors/mesh/editmesh_tools.c

===================================================================

diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 7e8f0c5ea8e..d4491721689 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -3817,7 +3817,7 @@ static int edbm_blend_from_shape_exec(bContext *C, wmOperator *op)
       EDBM_update(me,
                   &(const struct EDBMUpdate_Params){
                       .calc_looptri = true,
-                      .calc_normals = false,
+                      .calc_normals = true,
                       .is_destructive = false,
                   });
     }



More information about the Bf-blender-cvs mailing list