Skip to content

Commit e18b0e0

Browse files
authored
Merge pull request #808 from mathjax/fix-movable-limits
Remove movablelimits property if the accent base has it set
2 parents ba81088 + c75fa06 commit e18b0e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ts/input/tex/base/BaseMethods.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ BaseMethods.Accent = function(parser: TexParser, name: string, accent: string, s
587587
NodeUtil.setAttribute(mml, 'stretchy', stretchy ? true : false);
588588
// @test Vector Op, Vector
589589
const mo = (NodeUtil.isEmbellished(c) ? NodeUtil.getCoreMO(c) : c);
590-
if (NodeUtil.isType(mo, 'mo')) {
590+
if (NodeUtil.isType(mo, 'mo') || NodeUtil.getProperty(mo, 'movablelimits')) {
591591
// @test Vector Op
592592
NodeUtil.setProperties(mo, {'movablelimits': false});
593593
}

0 commit comments

Comments
 (0)