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; }