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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-06-15 07:35:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-06-15 07:35:43 +0300
commitae348081145110f03825f48adbdd97b14a166af3 (patch)
treec2ad21be9a04b51c9e45117e3b03fd8c12d42bbb /source
parentfdad77d73d0507cabc5181d553d6f108b9df0907 (diff)
Fix missing normal update in edit-mesh blend-from shape operator
Diffstat (limited to 'source')
-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 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,
});
}