Commit 6b5219b7 authored by SergeyLuzyanin's avatar SergeyLuzyanin

fix Bug 35074

parent ca409ab7
...@@ -1931,7 +1931,8 @@ CPresentation.prototype = ...@@ -1931,7 +1931,8 @@ CPresentation.prototype =
} }
} }
this.Slides[this.CurPage].graphicObjects.paragraphAdd(ParaItem, bRecalculate); this.Slides[this.CurPage].graphicObjects.paragraphAdd(ParaItem, bRecalculate);
if(AscFormat.getTargetTextObject(this.Slides[this.CurPage].graphicObjects) instanceof AscFormat.CGraphicFrame){ var oTargetTextObject = AscFormat.getTargetTextObject(this.Slides[this.CurPage].graphicObjects);
if(!oTargetTextObject || (oTargetTextObject instanceof AscFormat.CGraphicFrame)){
bRecalculate = false; bRecalculate = false;
} }
if(oMathShape) if(oMathShape)
......
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