mirror of
https://github.com/ONLYOFFICE/sdkjs.git
synced 2026-04-07 14:09:12 +08:00
[se] Fix bug 76100 (#1581)
Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/sdkjs/pulls/1581
This commit is contained in:
@ -889,10 +889,10 @@
|
||||
var maxRow = 0;
|
||||
var maxCol = 0;
|
||||
range3._foreachNoEmpty(function (cell) {
|
||||
if (cell.nCol > maxCol) {
|
||||
if (cell.nCol > maxCol && !cell.ws.getColHidden(cell.nCol)) {
|
||||
maxCol = cell.nCol;
|
||||
}
|
||||
if (cell.nRow > maxRow) {
|
||||
if (cell.nRow > maxRow && !cell.ws.getRowHidden(cell.nRow)) {
|
||||
maxRow = cell.nRow;
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user