restored width/height calc
This commit is contained in:
@ -110,6 +110,9 @@ fonttextinfo_t * fontTextClamp(font_t *font, char *text, float maxWidth) {
|
|||||||
if(c == FONT_SPACE) {
|
if(c == FONT_SPACE) {
|
||||||
x += FONT_SPACE_SIZE;
|
x += FONT_SPACE_SIZE;
|
||||||
|
|
||||||
|
info->width = mathMax(info->width, quad->x1);
|
||||||
|
info->height = mathMax(info->height, quad->y1);
|
||||||
|
|
||||||
// Did this space cause a newline?
|
// Did this space cause a newline?
|
||||||
if(x > maxWidth) {
|
if(x > maxWidth) {
|
||||||
info->lines++;
|
info->lines++;
|
||||||
@ -163,6 +166,9 @@ fonttextinfo_t * fontTextClamp(font_t *font, char *text, float maxWidth) {
|
|||||||
|
|
||||||
info->realLength++;
|
info->realLength++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
info->width = mathMax(info->width, quad->x1);
|
||||||
|
info->height = mathMax(info->height, quad->y1);
|
||||||
|
|
||||||
return info;
|
return info;
|
||||||
}
|
}
|
Reference in New Issue
Block a user