fix [#35503] Bug with BMesh and Mirror Modifier (Blender 2.67)

regression with bmesh - extruding was creating faces where it shouldn't.
This commit is contained in:
Campbell Barton 2013-05-27 20:56:33 +00:00
parent a70fa65592
commit 4439eca654

@ -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) {