Commit 5b80b6a3 authored by Sergey Luzyanin's avatar Sergey Luzyanin

fix Bug 33414

parent 9968e514
......@@ -82,7 +82,7 @@ function FrozenPlace(ws, type) {
case FrozenAreaType.Top: {
if (!_this.frozenCell.col && _this.frozenCell.row)
_this.range = new asc_Range(0, 0, _this.worksheet.getLastVisibleCol(), _this.frozenCell.row - 1);
_this.range = new asc_Range(_this.worksheet.getFirstVisibleCol(), 0, _this.worksheet.getLastVisibleCol(), _this.frozenCell.row - 1);
else
_this.isValid = false;
}
......
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