Its silly to use "verify index" because it will add non existing and remove them afterwards.

This commit is contained in:
Ove Murberg Henriksen 2012-10-10 08:50:56 +00:00
parent 7c351d3d09
commit 495e3f3f36

@ -511,7 +511,7 @@ static int ed_vgroup_transfer_weight(Object *ob_dst, Object *ob_src, bDeformGrou
if (*dv_dst == NULL) continue;
dw_dst = defvert_verify_index(*dv_dst, index_dst);
dw_dst = defvert_find_index(*dv_dst, index_dst);
/* remove vertex from group */
if (dw_dst) defvert_remove_group(*dv_dst, dw_dst);
}