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:
authorClément Foucault <foucault.clem@gmail.com>2019-03-01 16:03:45 +0300
committerClément Foucault <foucault.clem@gmail.com>2019-03-01 19:17:44 +0300
commitfaec3655d8bfddf510ee9330fa6c9511086ba79d (patch)
treee9e055036a314f250fdb575848365f98d2622639 /source/blender/modifiers
parentfa5950d87820655ef357a3a0ec301ff4816a00e5 (diff)
Fix T62075: Edges generated by solidify modifier does not appear
This was a missing flag.
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_solidify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_solidify.c b/source/blender/modifiers/intern/MOD_solidify.c
index b2b58c3e4e8..1425269b642 100644
--- a/source/blender/modifiers/intern/MOD_solidify.c
+++ b/source/blender/modifiers/intern/MOD_solidify.c
@@ -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;