Fix glitch scaling bone radius

connected parents radius could get out of sync with child.
This commit is contained in:
Campbell Barton 2015-04-01 17:07:04 +11:00
parent 879f5c832b
commit 6461fbd9ce

@ -808,6 +808,10 @@ static void recalcData_objects(TransInfo *t)
ebo->rad_head *= ebo->length / ebo->oldlength;
ebo->rad_tail *= ebo->length / ebo->oldlength;
ebo->oldlength = ebo->length;
if (ebo_parent) {
ebo_parent->rad_tail = ebo->rad_head;
}
}
}