Take the global scaling factor into account.

This commit is contained in:
Davide P. Cervone 2016-08-21 15:08:54 -04:00
parent fc47ec0171
commit aba0f465ee

View File

@ -1544,7 +1544,8 @@
if (values.fontsize && !this.mathsize) values.mathsize = values.fontsize;
if (values.mathsize !== 1) scale *= CHTML.length2em(values.mathsize,1,1);
var variant = this.CHTMLvariant;
if (variant && variant.style && variant.style["font-family"]) scale /= CHTML.scale;
if (variant && variant.style && variant.style["font-family"])
scale *= (CHTML.config.scale/100)/CHTML.scale;
this.CHTML.scale = scale; pscale = this.CHTML.rscale = scale/pscale;
if (Math.abs(pscale-1) < .001) pscale = 1;
if (node && pscale !== 1) node.style.fontSize = CHTML.Percent(pscale);