Commit 00ea5b4b authored by Sergey.Tsarkov's avatar Sergey.Tsarkov Committed by Alexander.Trofimov
parent 5f2d7171
......@@ -2322,18 +2322,15 @@ function Binary_oMathWriter(memory, oMathPara)
}
this.WriteLimLoc = function(LimLoc)
{
if (LimLoc != 1)
this.memory.WriteByte(c_oSer_OMathBottomNodesValType.Val);
this.memory.WriteByte(c_oSerPropLenType.Byte);
var val = c_oAscLimLoc.SubSup;
switch (LimLoc)
{
this.memory.WriteByte(c_oSer_OMathBottomNodesValType.Val);
this.memory.WriteByte(c_oSerPropLenType.Byte);
var val = c_oAscLimLoc.SubSup;
switch (LimLoc)
{
case NARY_SubSup: val = c_oAscLimLoc.SubSup; break;
case NARY_UndOvr: val = c_oAscLimLoc.UndOvr;
}
this.memory.WriteByte(val);
case NARY_SubSup: val = c_oAscLimLoc.SubSup; break;
case NARY_UndOvr: val = c_oAscLimLoc.UndOvr;
}
this.memory.WriteByte(val);
}
this.WriteLimLow = function(oLimLow)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment