Commit a6732c4d authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

fix bug #31041

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@66896 954022d7-b5bf-4e40-9824-e11837661b57
parent 1f083072
......@@ -1352,8 +1352,7 @@
x += this.cols[i].width;
}
if (1 === fullRecalc)
this.nColsCount = Math.min(Math.max(this.nColsCount, i), gc_nMaxCol);
this.nColsCount = Math.min(Math.max(this.nColsCount, i), gc_nMaxCol);
};
/**
......@@ -1404,8 +1403,7 @@
y += this.rows[i].height;
}
if (1 === fullRecalc)
this.nRowsCount = Math.min(Math.max(this.nRowsCount, i), gc_nMaxRow);
this.nRowsCount = Math.min(Math.max(this.nRowsCount, i), gc_nMaxRow);
};
/** Вычисляет диапазон индексов видимых колонок */
......
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