Merge pull request 'Fix pos of inline Nary' (#1180) from fix/math-nary-pos into hotfix/v9.0.3

This commit is contained in:
Ilya Kirillov
2025-06-27 08:29:43 +00:00

View File

@ -1292,7 +1292,7 @@ CNaryInlineOperator.prototype.drawTextElem = function(x, y, pGraphics)
};
pGraphics.SetFont(Font);
pGraphics.FillTextCode(x, y, this.Base.RecalcInfo.StyleCode);
pGraphics.FillTextCode(x + this.pos.x, y + this.pos.y + this.size.height - (this.size.height - this.size.ascent), this.Base.RecalcInfo.StyleCode);
};
CNaryInlineOperator.prototype.Get_TxtPrControlLetter = function()
{