Fix crash with font on curve

Was a mistake from recent texspace changes.

Reported by Pablo here in the studio!
This commit is contained in:
Sergey Sharybin 2018-02-09 10:13:42 +01:00
parent 8f9386596f
commit 07ccb8b97c
1 changed files with 7 additions and 2 deletions

View File

@ -1080,8 +1080,13 @@ makebreak:
float distfac, imat[4][4], imat3[3][3], cmat[3][3];
float minx, maxx, miny, maxy;
float timeofs, sizefac;
invert_m4_m4(imat, ob->obmat);
if (ob != NULL) {
invert_m4_m4(imat, ob->obmat);
}
else {
unit_m4(imat);
}
copy_m3_m4(imat3, imat);
copy_m3_m4(cmat, cu->textoncurve->obmat);