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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2012-05-03 20:35:51 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2012-05-03 20:35:51 +0400
commit4965f3d022171ced97ad6aea7d90453ab2c56c96 (patch)
tree33e19268beaac89320d45ba60be0e2443385d39e /source/blender/editors/mesh/editmesh_knife.c
parent763dee290490126c164b2af9c742b8719b165459 (diff)
Fix #31234: vertex normals not update after knife cut.
Diffstat (limited to 'source/blender/editors/mesh/editmesh_knife.c')
-rw-r--r--source/blender/editors/mesh/editmesh_knife.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/editmesh_knife.c b/source/blender/editors/mesh/editmesh_knife.c
index 6f33fcd05b7..2208d96ca46 100644
--- a/source/blender/editors/mesh/editmesh_knife.c
+++ b/source/blender/editors/mesh/editmesh_knife.c
@@ -2684,6 +2684,7 @@ static void knifetool_finish(bContext *C, wmOperator *op)
knife_make_cuts(kcd);
#endif
+ EDBM_mesh_normals_update(kcd->em);
EDBM_update_generic(C, kcd->em, TRUE);
}