Division by 0 error in Font::measureText() with MathJax_Vector and

MathJax_Vector-Bold fonts.
This commit is contained in:
Seo Youngjin 2020-07-21 21:41:07 +09:00
parent cd0415e79a
commit 925401b26a
1 changed files with 2 additions and 0 deletions

View File

@ -239,6 +239,8 @@ class Font : RefCountedObject {
bool fixed = isFixed;
bool useKerning = allowKerning && !fixed;
int fixedCharWidth = charWidth('M');
if (fixedCharWidth == 0)
fixedCharWidth = spaceWidth;
int x = 0;
int charsMeasured = 0;
int * pwidths = widths.ptr;