Commit 47c165b7 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50131 954022d7-b5bf-4e40-9824-e11837661b57
parent 9ded2e8c
...@@ -722,8 +722,8 @@ CGraphicFrame.prototype = ...@@ -722,8 +722,8 @@ CGraphicFrame.prototype =
this.graphicObject.Draw(0, graphics); this.graphicObject.Draw(0, graphics);
if(locktype_None != this.Lock.Get_Type()) if(locktype_None != this.Lock.Get_Type())
graphics.DrawLockObjectRect(this.Lock.Get_Type() , 0, 0, this.extX, this.extY); graphics.DrawLockObjectRect(this.Lock.Get_Type() , 0, 0, this.extX, this.extY);
graphics.SetIntegerGrid(true);
graphics.reset(); graphics.reset();
graphics.SetIntegerGrid(true);
} }
}, },
......
...@@ -795,7 +795,9 @@ CGraphics.prototype = ...@@ -795,7 +795,9 @@ CGraphics.prototype =
{ {
this.m_oTransform.Reset(); this.m_oTransform.Reset();
this.CalculateFullTransform(false); this.CalculateFullTransform(false);
this.m_oContext.setTransform(this.m_oCoordTransform.sx,0,0,this.m_oCoordTransform.sy,0, 0);
if (!this.m_bIntegerGrid)
this.m_oContext.setTransform(this.m_oCoordTransform.sx,0,0,this.m_oCoordTransform.sy,0, 0);
}, },
transform3 : function(m, isNeedInvert) transform3 : function(m, isNeedInvert)
......
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