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>2016-10-26 06:15:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-10-26 06:18:44 +0300
commita1f137767fe7bf7213543a54e1e73e8cc5f29f07 (patch)
tree6a198c6e6d4f7e2660a8d8ff9fb0b8ae68ac7cde /source/blender/bmesh
parentbc71c2bf08d887ded44243ba93447e0bea493745 (diff)
BMesh: edge-net split, edge selection error
In practice I couldn't make this cause a bug, however it's a logical regression in fix for T48716. Thanks to Francesc Juhe for finding.
Diffstat (limited to 'source/blender/bmesh')
-rw-r--r--source/blender/bmesh/intern/bmesh_polygon_edgenet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/intern/bmesh_polygon_edgenet.c b/source/blender/bmesh/intern/bmesh_polygon_edgenet.c
index 5ee0e904a33..6ce7c100b0d 100644
--- a/source/blender/bmesh/intern/bmesh_polygon_edgenet.c
+++ b/source/blender/bmesh/intern/bmesh_polygon_edgenet.c
@@ -161,7 +161,7 @@ static bool bm_face_split_edgenet_find_loop_pair(
e_pair[1] = BLI_SMALLSTACK_POP(edges_boundary);
if (edges_boundary_len > 2) {
- BLI_SMALLSTACK_SWAP(edges_search, edges_wire);
+ BLI_SMALLSTACK_SWAP(edges_search, edges_boundary);
}
}
else {