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>2015-04-30 00:22:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-04-30 00:22:18 +0300
commite9dcb068c749bc9e73450a4feb491551ede58c07 (patch)
treeb9e61bd343e014ee438df4121b85635fb3e563e6 /source/blender/modifiers/intern
parent99811c283efaa8f5bc13b81bb5cc42761c42a8a0 (diff)
Fix T44484: Edge-split corrupts mesh
Splitting non-manifold edges could produce duplicate edges.
Diffstat (limited to 'source/blender/modifiers/intern')
-rw-r--r--source/blender/modifiers/intern/MOD_edgesplit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_edgesplit.c b/source/blender/modifiers/intern/MOD_edgesplit.c
index fa29921b325..2e6360c3ded 100644
--- a/source/blender/modifiers/intern/MOD_edgesplit.c
+++ b/source/blender/modifiers/intern/MOD_edgesplit.c
@@ -91,7 +91,7 @@ static DerivedMesh *doEdgeSplit(DerivedMesh *dm, EdgeSplitModifierData *emd)
}
}
- BM_mesh_edgesplit(bm, false, true, false);
+ BM_mesh_edgesplit(bm, false, false, true, false);
/* BM_mesh_validate(bm); */ /* for troubleshooting */