Commit 1d0a56f2 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@47527 954022d7-b5bf-4e40-9824-e11837661b57
parent a3bdaff0
......@@ -85,5 +85,11 @@ DrawingObjectsController.prototype =
startTrackNewShape: function(presetGeom)
{
this.changeCurrentState(new StartTrackNewShapeState(this, this.drawingObjects, presetGeom));
},
drawTracks: function(overlay)
{
for(var i = 0; i < this.arrTrackObjects.length; ++i)
this.arrTrackObjects[i].draw(overlay);
}
};
\ No newline at end of file
......@@ -41,8 +41,6 @@ function CShape(drawingBase)
this.pen = null;
this.selected = false;
}
......
......@@ -43,7 +43,7 @@ function OverlayObject(geometry, extX, extY, brush, pen, transform)
overlay.SetIntegerGrid(false);
overlay.transform3(this.transform, false);
this.shapeDrawer.fromShape(this, overlay);
this.shapeDrawer.draw(this.spPr.geometry);
this.shapeDrawer.draw(this.geometry);
overlay.RestoreGrState();
};
......
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