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:
authorCampbell Barton <ideasman42@gmail.com>2013-12-22 00:19:48 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-12-22 00:19:48 +0400
commitb01cbede045b8b34a6fa36bc77d83779606931d8 (patch)
tree5cba8234d2e9030355a85f6c34f2cd22e79b7c9b
parenta183aa6c6794a01d4fe633ca6fb732c8d7a61826 (diff)
error in last commit, missing normal update.
-rw-r--r--source/blender/modifiers/intern/MOD_wireframe.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/modifiers/intern/MOD_wireframe.c b/source/blender/modifiers/intern/MOD_wireframe.c
index bcef1931a9b..af228ca5f57 100644
--- a/source/blender/modifiers/intern/MOD_wireframe.c
+++ b/source/blender/modifiers/intern/MOD_wireframe.c
@@ -102,6 +102,8 @@ static DerivedMesh* WireframeModifier_do( WireframeModifierData *wmd, Object *ob
result = CDDM_from_bmesh(bm, true);
BM_mesh_free(bm);
+ result->dirty |= DM_DIRTY_NORMALS;
+
return result;
}