forked from bartvdbraak/blender
While making TransData, with mixed selection of objects and ipokeys, the
transdata pointers were increased wrong, creating empty gaps (NULL)
This commit is contained in:
parent
b1bd69c6f1
commit
f26e4ca150
@ -2107,15 +2107,17 @@ static void createTransObject(TransInfo *t)
|
||||
ObjectToTransData(td, ob);
|
||||
td->tdi = NULL;
|
||||
td->val = NULL;
|
||||
td++;
|
||||
tx++;
|
||||
}
|
||||
}
|
||||
else {
|
||||
ObjectToTransData(td, ob);
|
||||
td->tdi = NULL;
|
||||
td->val = NULL;
|
||||
td++;
|
||||
tx++;
|
||||
}
|
||||
td++;
|
||||
tx++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user