Commit a4e851fd authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Bug #31846 Исправлен баг с расчетом таблицы, у которой есть две разных...

Bug #31846 Исправлен баг с расчетом таблицы, у которой есть две разных объединённых по вертикали ячейки на одной строке, с вертикальным текстом внутри данных ячеек.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@68712 954022d7-b5bf-4e40-9824-e11837661b57
parent 359f312c
...@@ -1787,6 +1787,7 @@ CTable.prototype.private_RecalculatePage = function(CurPage) ...@@ -1787,6 +1787,7 @@ CTable.prototype.private_RecalculatePage = function(CurPage)
if (true === Cell.Is_VerticalText()) if (true === Cell.Is_VerticalText())
{ {
VerticallCells.push(Cell); VerticallCells.push(Cell);
CurGridCol += GridSpan;
continue; continue;
} }
...@@ -2189,6 +2190,7 @@ CTable.prototype.private_RecalculatePage = function(CurPage) ...@@ -2189,6 +2190,7 @@ CTable.prototype.private_RecalculatePage = function(CurPage)
if (true === Cell.Is_VerticalText()) if (true === Cell.Is_VerticalText())
{ {
VerticallCells.push(Cell); VerticallCells.push(Cell);
CurGridCol += GridSpan;
continue; continue;
} }
...@@ -2359,6 +2361,7 @@ CTable.prototype.private_RecalculatePage = function(CurPage) ...@@ -2359,6 +2361,7 @@ CTable.prototype.private_RecalculatePage = function(CurPage)
if (true === Cell.Is_VerticalText()) if (true === Cell.Is_VerticalText())
{ {
VerticallCells.push(Cell); VerticallCells.push(Cell);
CurGridCol += GridSpan;
continue; continue;
} }
......
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