fix [#32423] Extrude crash

mistake in r50086 caused the crash (killing the wrong vertex)
This commit is contained in:
2012-09-03 00:30:55 +00:00
parent dbdd1bb4f2
commit bd53226b5c

View File

@@ -390,7 +390,7 @@ void bmo_extrude_face_region_exec(BMesh *bm, BMOperator *op)
if (!v1->e)
BM_vert_kill(bm, v1);
if (!v2->e)
BM_vert_kill(bm, v1);
BM_vert_kill(bm, v2);
continue;
}