Commit 35a3f25a authored by Sergey Konovalov's avatar Sergey Konovalov Committed by GitHub

fix bug 34029

wrong order of elements in formula 'limit' after saving xlsx
parent e9dadc80
......@@ -2883,8 +2883,8 @@ function Binary_oMathWriter(memory, oMathPara, saveParams)
var oLim = oLimLow.getIterator();
this.bs.WriteItem(c_oSer_OMathContentType.LimLowPr, function(){oThis.WriteLimLowPr(oLimLow);});
this.bs.WriteItem(c_oSer_OMathContentType.Element, function(){oThis.WriteArgNodes(oElem);});
this.bs.WriteItem(c_oSer_OMathContentType.Lim, function(){oThis.WriteArgNodes(oLim);});
this.bs.WriteItem(c_oSer_OMathContentType.Element, function(){oThis.WriteArgNodes(oElem);});
}
this.WriteLimLowPr = 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