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

Поправил баг http://bugzserver/show_bug.cgi?id=24835

При scroll пытались проверять скрытые ячейки (для ненужного направления)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56743 954022d7-b5bf-4e40-9824-e11837661b57
parent aee28a56
......@@ -6019,14 +6019,15 @@
c2 !== undefined ? c2 : ar.c2,
r2 !== undefined ? r2 : ar.r2);
// ToDo возможно это избыточные проверки
if (c1 >= 0) {ar.startCol = c1;}
if (r1 >= 0) {ar.startRow = r1;}
if (t.cols[ar.startCol].width < t.width_1px) {
if (0 !== dc && t.cols[ar.startCol].width < t.width_1px) {
c1 = findVisibleCol(ar.startCol, dc);
if (c1 >= 0) {ar.startCol = c1;}
}
if (t.rows[ar.startRow].height < t.height_1px) {
if (0 !== dr && t.rows[ar.startRow].height < t.height_1px) {
r1 = findVisibleRow(ar.startRow, dr);
if (r1 >= 0) {ar.startRow = r1;}
}
......
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