Looking at it, I could improve drawing of selection at least

*slightly* for TextOnCurve. It draws with errors, but it's at least
possible to remotely guess the selection :-)
This commit is contained in:
Alexander Ewering 2005-09-18 23:50:23 +00:00
parent 9db14ce9b3
commit 743bf0c7bb

@ -1013,6 +1013,7 @@ struct chartrans *text_to_curve(Object *ob, int mode)
for (i=0; i<=selend; i++, ct++) { for (i=0; i<=selend; i++, ct++) {
if (i>=selstart) { if (i>=selstart) {
selboxes[i-selstart].x = ct->xof*cu->fsize; selboxes[i-selstart].x = ct->xof*cu->fsize;
selboxes[i-selstart].y = ct->yof*cu->fsize;
} }
} }
} }