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

Fix Bug 21718 - [Shapes] Пропадает lock группы автофигур при скроллинге листа

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51290 954022d7-b5bf-4e40-9824-e11837661b57
parent a153e2bb
......@@ -442,6 +442,14 @@ CGroupShape.prototype =
{
for(var i = 0; i < this.spTree.length; ++i)
this.spTree[i].draw(graphics);
if ( (graphics instanceof CGraphics) && !graphics.m_oContext.isOverlay ) {
graphics.SetIntegerGrid(false);
graphics.transform3(this.transform, false);
graphics.DrawLockObjectRect(this.lockType, 0, 0, this.extX, this.extY );
graphics.reset();
graphics.SetIntegerGrid(true);
}
},
recalculate: function(aImages)
......
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