mirror of
https://projects.blender.org/blender/blender.git
synced 2025-01-22 07:22:12 -05:00
Fix error in fix for #87219, accidental assignment in conditional
This commit is contained in:
parent
2695e15c18
commit
037882320c
1 changed files with 1 additions and 1 deletions
|
@ -485,7 +485,7 @@ void constraintSizeLim(const TransInfo *t, const TransDataContainer *tc, TransDa
|
|||
/* just multiply by td->mtx (this should be ok) */
|
||||
mul_m4_m3m4(cob.matrix, td->mtx, cob.matrix);
|
||||
}
|
||||
else if (con->ownspace = CONSTRAINT_SPACE_POSE) {
|
||||
else if (con->ownspace == CONSTRAINT_SPACE_POSE) {
|
||||
/* Bone space without considering object transformations. */
|
||||
mul_m4_m3m4(cob.matrix, td->mtx, cob.matrix);
|
||||
mul_m4_m3m4(cob.matrix, tc->imat3, cob.matrix);
|
||||
|
|
Loading…
Reference in a new issue