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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-05-28 00:56:33 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-28 00:56:33 +0400
commit4439eca6547b20eb61c163ac77a4f88972ac6944 (patch)
treee022791a2093a8ce823b910829212a976ba4adaa /source
parenta70fa65592f7acd2f903156a62ba250f1e77efc3 (diff)
fix [#35503] Bug with BMesh and Mirror Modifier (Blender 2.67)
regression with bmesh - extruding was creating faces where it shouldn't.
Diffstat (limited to 'source')
-rw-r--r--source/blender/bmesh/operators/bmo_extrude.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/bmesh/operators/bmo_extrude.c b/source/blender/bmesh/operators/bmo_extrude.c
index acb1001ca83..32c8ee50e05 100644
--- a/source/blender/bmesh/operators/bmo_extrude.c
+++ b/source/blender/bmesh/operators/bmo_extrude.c
@@ -409,6 +409,12 @@ void bmo_extrude_face_region_exec(BMesh *bm, BMOperator *op)
continue;
}
+ /* skip creating face for excluded edges see [#35503] */
+ if (BMO_slot_map_contains(slot_edges_exclude, e)) {
+ /* simply skip creating the face */
+ continue;
+ }
+
e_new = *(BMEdge **)BMO_iter_map_value(&siter);
if (!e_new) {