Commit 8d82ea4b authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Поправил отрисовку бордеров при скрытых строказх (для файла...

Поправил отрисовку бордеров при скрытых строказх (для файла \\192.168.5.2\source\Documents\XLXS\WE_.xlsx лист "КБ (А)")

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57782 954022d7-b5bf-4e40-9824-e11837661b57
parent 91ce8d9d
......@@ -2806,16 +2806,16 @@
--row;
}
var mc = null;
var mc = null, nextRow;
var isPrevColExist = (0 <= prevCol);
for (row = range.r1; row <= range.r2 && row < t.nRowsCount; row = nextRow) {
nextRow = row + 1;
if (r[row].height < t.height_1px) {continue;}
var isFirstRow = row === range.r1;
var isLastRow = row === range.r2;
var nextRow;
// Нужно отсеять пустые снизу
for (nextRow = row + 1; nextRow <= range.r2 && nextRow < t.nRowsCount; ++nextRow)
for (; nextRow <= range.r2 && nextRow < t.nRowsCount; ++nextRow)
if (r[nextRow].height >= t.height_1px) {break;}
if (isFirstRow)
......
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