Commit 84b321d2 authored by SergeyLuzyanin's avatar SergeyLuzyanin

fix Bug 35954

parent 3a253eb0
...@@ -1865,8 +1865,17 @@ CGraphics.prototype = ...@@ -1865,8 +1865,17 @@ CGraphics.prototype =
}, },
drawVerLine : function(align, x, y, b, penW) drawVerLine : function(align, x, y, b, penW)
{ {
if (!this.m_bIntegerGrid) var _check_transform = global_MatrixTransformer.IsIdentity2(this.m_oTransform);
if (!this.m_bIntegerGrid || !_check_transform)
{ {
if (_check_transform)
{
this.SetIntegerGrid(true);
this.drawVerLine(align, x, y, b, penW);
this.SetIntegerGrid(false);
return;
}
this.p_width(penW * 1000); this.p_width(penW * 1000);
this._s(); this._s();
this._m(x, y); this._m(x, y);
...@@ -1933,7 +1942,6 @@ CGraphics.prototype = ...@@ -1933,7 +1942,6 @@ CGraphics.prototype =
} }
} }
}, },
// мега крутые функции для таблиц // мега крутые функции для таблиц
drawHorLineExt : function(align, y, x, r, penW, leftMW, rightMW) drawHorLineExt : function(align, y, x, r, penW, leftMW, rightMW)
{ {
......
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