From ae348081145110f03825f48adbdd97b14a166af3 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 15 Jun 2021 14:35:43 +1000 Subject: Fix missing normal update in edit-mesh blend-from shape operator --- source/blender/editors/mesh/editmesh_tools.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/mesh') 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, }); } -- cgit v1.2.3