Don't allow movablelimits in the base of \underset and \overset. Resolves issue #1259.
This commit is contained in:
parent
3ba60663df
commit
404c73c30a
|
@ -1452,10 +1452,12 @@
|
|||
|
||||
Overset: function (name) {
|
||||
var top = this.ParseArg(name), base = this.ParseArg(name);
|
||||
if (base.isa(MML.mo)) base.movablelimits = false;
|
||||
this.Push(MML.mover(base,top));
|
||||
},
|
||||
Underset: function (name) {
|
||||
var bot = this.ParseArg(name), base = this.ParseArg(name);
|
||||
if (base.isa(MML.mo)) base.movablelimits = false;
|
||||
this.Push(MML.munder(base,bot));
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user