Fix T62075: Edges generated by solidify modifier does not appear

This was a missing flag.
This commit is contained in:
Clément Foucault 2019-03-01 14:03:45 +01:00
parent fa5950d878
commit faec3655d8
Notes: blender-bot 2023-05-22 12:40:41 +02:00
Referenced by issue #62075, Wireframe of cerain object did not appear
1 changed files with 1 additions and 1 deletions

View File

@ -775,7 +775,7 @@ static Mesh *applyModifier(
for (i = 0; i < rimVerts; i++, ed++, orig_ed++) {
ed->v1 = new_vert_arr[i];
ed->v2 = (do_shell ? new_vert_arr[i] : i) + numVerts;
ed->flag |= ME_EDGEDRAW;
ed->flag |= ME_EDGEDRAW | ME_EDGERENDER;
*orig_ed = ORIGINDEX_NONE;