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) {
|
||||
x += FONT_SPACE_SIZE;
|
||||
|
||||
info->width = mathMax(info->width, quad->x1);
|
||||
info->height = mathMax(info->height, quad->y1);
|
||||
|
||||
// Did this space cause a newline?
|
||||
if(x > maxWidth) {
|
||||
info->lines++;
|
||||
@ -164,5 +167,8 @@ fonttextinfo_t * fontTextClamp(font_t *font, char *text, float maxWidth) {
|
||||
info->realLength++;
|
||||
}
|
||||
|
||||
info->width = mathMax(info->width, quad->x1);
|
||||
info->height = mathMax(info->height, quad->y1);
|
||||
|
||||
return info;
|
||||
}
|
Reference in New Issue
Block a user