Commit 86255078 authored by Dmitry.Vikulov's avatar Dmitry.Vikulov Committed by Alexander.Trofimov

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48871 954022d7-b5bf-4e40-9824-e11837661b57
parent 51600023
This diff is collapsed.
......@@ -880,11 +880,27 @@ CShape.prototype =
recalculate: function()
{
if(this.recalcInfo.recalculateTransform)
{
this.recalculateTransform();
this.recalcInfo.recalculateTransform = false;
}
if(this.recalcInfo.recalculateBrush)
{
this.recalculateBrush();
if(this.recalcInfo.recalculatePen)
this.recalcInfo.recalculateBrush = false;
}
if(this.recalcInfo.recalculatePen)
{
this.recalculatePen();
this.recalcInfo.recalculatePen = false;
}
if(this.recalInfo.recalculateGeometry)
{
if(this.spPr.geometry)
{
this.spPr.geometry.Recalculate(this.extX, this.extY);
}
}
},
calculateFill: function()
......
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