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:
authorHoward Trickey <howard.trickey@gmail.com>2011-12-14 18:53:22 +0400
committerHoward Trickey <howard.trickey@gmail.com>2011-12-14 18:53:22 +0400
commitd0b70cffaf99321c57045d8dc8ec197b1542395c (patch)
tree50ea7eaeee67712eb13856be15971f637d747b2a /source/blender
parente4b712608e6b4a0407a14ac248cc1ac06495f4fc (diff)
Partial fix for #29601 - fixes infinite loop in edgesplit; but edgesplit (angles) messes the geometry still
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/bmesh/operators/edgesplitop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/operators/edgesplitop.c b/source/blender/bmesh/operators/edgesplitop.c
index 75eb13211fb..6c35fa92452 100644
--- a/source/blender/bmesh/operators/edgesplitop.c
+++ b/source/blender/bmesh/operators/edgesplitop.c
@@ -191,7 +191,7 @@ static void tag_out_edges(BMesh *bm, EdgeTag *etags, BMOperator *UNUSED(op))
startl = l;
do {
l = BM_OtherFaceLoop(l->e, l->f, v);
- if (BM_Edge_FaceCount(l->e) != 2) {
+ if (l == startl || BM_Edge_FaceCount(l->e) != 2) {
break;
}
l = l->radial_next;