Mark accented operators as not having movable limits. Resolves issue .

This commit is contained in:
Davide P. Cervone 2016-05-17 19:07:17 -04:00
parent c0c63b1e12
commit ab7d436bb1

View File

@ -1433,6 +1433,8 @@
var def = {accent: true}; if (this.stack.env.font) {def.mathvariant = this.stack.env.font}
var mml = this.mmlToken(MML.mo(MML.entity("#x"+accent)).With(def));
mml.stretchy = (stretchy ? true : false);
var mo = (c.isEmbellished() ? c.CoreMO() : c);
if (mo.isa(MML.mo)) mo.movablelimits = false;
this.Push(MML.TeXAtom(MML.munderover(c,null,mml).With({accent: true})));
},