-- Bugfix 3543: call to test_index_face() in decimateModifier_applyModifier()

was passing pointer to the wrong face, which led to eekadoodle later in
   EditMode.
This commit is contained in:
Ken Hughes 2005-12-06 00:02:55 +00:00
parent 34049def4e
commit 2d19c4f208

@ -841,7 +841,7 @@ static void *decimateModifier_applyModifier(ModifierData *md, Object *ob, void *
mf->v1 = tri[0];
mf->v2 = tri[1];
mf->v3 = tri[2];
test_index_face(mface, NULL, NULL, 3);
test_index_face(mf, NULL, NULL, 3);
}
displistmesh_add_edges(ndlm);
}