Fix for bug #7851: crash with LSCM unwrap, due to opennl refactor.

Fix for bug #7856: crash hitting "neg" button for particle vertex groups.
This commit is contained in:
Brecht Van Lommel
2007-12-01 12:08:46 +00:00
parent 092e9dcdc3
commit 4813af326b
2 changed files with 2 additions and 2 deletions

View File

@@ -240,7 +240,7 @@ static void __nlSparseMatrixConstruct(
M->storage = storage;
if(storage & __NL_ROWS) {
M->row = __NL_NEW_ARRAY(__NLRowColumn, m);
for(i=0; i<n; i++) {
for(i=0; i<m; i++) {
__nlRowColumnConstruct(&(M->row[i]));
}
} else {

View File

@@ -3772,7 +3772,7 @@ static void object_panel_particle_extra(Object *ob)
uiDefButS(block, MENU, B_PART_REDRAW, "Attribute%t|TanRot%x10|TanVel%x9|Size%x8|RoughE%x7|Rough2%x6|Rough1%x5|Kink%x4|Clump%x3|Length%x2|Velocity%x1|Density%x0", butx,(buty-=buth),butw-40,buth, &vgnum, 14.0, 0.0, 0, 0, "Attribute effected by vertex group");
but=uiDefButBitS(block, TOG, (1<<vgnum), B_PART_REDRAW, "Neg", butx+butw-40,buty,40,buth, &psys->vg_neg, 0, 0, 0, 0, "Negate the effect of the vertex group");
uiButSetFunc(but, particle_set_vg, (void *)psys, (void *)(&vgnum));
uiButSetFunc(but, particle_set_vg, (void *)ob, (void *)(&vgnum));
butx+=butw;