Commit c5599055 authored by Oleg.Korshul's avatar Oleg.Korshul

transform3 -> set integer grid to false!!!

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60030 954022d7-b5bf-4e40-9824-e11837661b57
parent c20dfd11
......@@ -812,8 +812,15 @@ CGraphics.prototype =
_t.ty = m.ty;
this.CalculateFullTransform(isNeedInvert);
var _ft = this.m_oFullTransform;
this.m_oContext.setTransform(_ft.sx,_ft.shy,_ft.shx,_ft.sy,_ft.tx,_ft.ty);
if (!this.m_bIntegerGrid)
{
var _ft = this.m_oFullTransform;
this.m_oContext.setTransform(_ft.sx,_ft.shy,_ft.shx,_ft.sy,_ft.tx,_ft.ty);
}
else
{
this.SetIntegerGrid(false);
}
// теперь трансформ выставляется ТОЛЬКО при загрузке шрифта. Здесь другого быть и не может
/*
......
......@@ -838,8 +838,15 @@ CGraphics.prototype =
_t.ty = m.ty;
this.CalculateFullTransform(isNeedInvert);
var _ft = this.m_oFullTransform;
this.m_oContext.setTransform(_ft.sx,_ft.shy,_ft.shx,_ft.sy,_ft.tx,_ft.ty);
if (!this.m_bIntegerGrid)
{
var _ft = this.m_oFullTransform;
this.m_oContext.setTransform(_ft.sx,_ft.shy,_ft.shx,_ft.sy,_ft.tx,_ft.ty);
}
else
{
this.SetIntegerGrid(false);
}
// теперь трансформ выставляется ТОЛЬКО при загрузке шрифта. Здесь другого быть и не может
/*
......
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