From 4439eca6547b20eb61c163ac77a4f88972ac6944 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 27 May 2013 20:56:33 +0000 Subject: fix [#35503] Bug with BMesh and Mirror Modifier (Blender 2.67) regression with bmesh - extruding was creating faces where it shouldn't. --- source/blender/bmesh/operators/bmo_extrude.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source/blender/bmesh') 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) { -- cgit v1.2.3