Commit 6b6be830 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@51591 954022d7-b5bf-4e40-9824-e11837661b57
parent bdf4b031
......@@ -5099,7 +5099,9 @@ function CDrawingDocument()
var _old_mode = editor.isViewMode;
editor.isViewMode = true;
editor.isShowTableEmptyLineAttack = true;
table.Draw(0, graphics);
editor.isShowTableEmptyLineAttack = false;
editor.isViewMode = _old_mode;
var _styleD = new CAscTableStyle();
......
......@@ -2003,7 +2003,7 @@ CGraphics.prototype =
DrawEmptyTableLine : function(x1,y1,x2,y2)
{
if (!editor.isShowTableEmptyLine || editor.isViewMode)
if ((!editor.isShowTableEmptyLine || editor.isViewMode) && (editor.isShowTableEmptyLineAttack === false))
return;
var _x1 = this.m_oFullTransform.TransformPointX(x1,y1);
......
......@@ -539,6 +539,7 @@ function asc_docs_api(name)
this.isStartAddShape = false;
this.addShapePreset = "";
this.isShowTableEmptyLine = true;
this.isShowTableEmptyLineAttack = false;
// CoAuthoring and Chat
this.User = undefined;
......
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