Commit c3d804a4 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin

Bug 27460 - [Docx] Увеличилось количество листов в документе из-за обтекаемых объектов

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59549 954022d7-b5bf-4e40-9824-e11837661b57
parent 395d8339
......@@ -4101,6 +4101,8 @@ ParaDrawing.prototype =
{
if(isRealObject(this.GraphicObj) && isRealObject(this.GraphicObj.spPr) && isRealObject(this.GraphicObj.spPr.xfrm))
return this.GraphicObj.spPr.xfrm.extX;
if(isRealNumber(this.W))
return this.W;
return 0;
},
......@@ -4108,6 +4110,8 @@ ParaDrawing.prototype =
{
if(isRealObject(this.GraphicObj) && isRealObject(this.GraphicObj.spPr) && isRealObject(this.GraphicObj.spPr.xfrm))
return this.GraphicObj.spPr.xfrm.extY;
if(isRealNumber(this.H))
return this.H;
return 0;
},
......
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