fix for extruding single edges from faces giving flipped loop data - UV's/VCols

This commit is contained in:
Campbell Barton 2012-10-27 15:24:19 +00:00
parent 9c2d72a27d
commit 71a0fb5dde

@ -151,8 +151,8 @@ static void bm_extrude_copy_face_loop_attributes(BMesh *bm, BMFace *f, BMEdge *e
BLI_assert(l_dst_a->f == l_dst_b->f);
if (l_dst_a != l_dst_a->radial_next) {
l_src_1 = l_dst_a->radial_next;
l_src_2 = l_src_1->next;
l_src_2 = l_dst_a->radial_next;
l_src_1 = l_src_2->next;
}
else if (l_dst_b != l_dst_b->radial_next) {
l_src_2 = l_dst_b->radial_next;