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

Не работало undo скрытия столбцов/строк.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64737 954022d7-b5bf-4e40-9824-e11837661b57
parent 8d23d126
......@@ -10542,8 +10542,8 @@
// ToDo заглушка..пора уже переделать обновление данных
if (range.r1 >= this.nRowsCount || range.c1 >= this.nColsCount)
return;
range.r2 = Math.min(range.r2, this.nRowsCount);
range.c2 = Math.min(range.c2, this.nColsCount);
range.r2 = Math.min(range.r2, this.nRowsCount - 1);
range.c2 = Math.min(range.c2, this.nColsCount - 1);
}
if(gc_nMaxCol0 === range.c2 || gc_nMaxRow0 === range.r2)
......
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