Commit 4c67a2e6 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

fix bug #28202

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60453 954022d7-b5bf-4e40-9824-e11837661b57
parent 01be25eb
......@@ -1030,9 +1030,9 @@ var gUndoInsDelCellsFlag = true;
var endRow = allFil.r2;
//проверяем диапазон
if (ws.cols.length < endCol)
if (ws.cols.length <= endCol)
ws.expandColsOnScroll(false, true, endCol + 1);
if (ws.rows.length < endRow)
if (ws.rows.length <= endRow)
ws.expandRowsOnScroll(false, true, endRow + 1);
for(var col = startCol; col <= endCol; col++)
{
......
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