Commit 87371906 authored by Sergey Konovalov's avatar Sergey Konovalov

prevent recalculation of formulas intersecting hidden rows after open

parent d041404b
......@@ -2964,6 +2964,7 @@
}
}
//this.setTableFormulaAfterOpen();
this.hiddenManager.initPostOpen();
this.handlers = handlers;
this._setHandlersTablePart();
......@@ -10621,7 +10622,10 @@
this.hiddenRowMin = gc_nMaxRow0;
this.hiddenRowMax = 0;
}
HiddenManager.prototype.initPostOpen = function () {
this.hiddenRowMin = gc_nMaxRow0;
this.hiddenRowMax = 0;
};
HiddenManager.prototype.addHidden = function (isRow, index) {
(isRow ? this.recalcHiddenRows : this.recalcHiddenCols).push(index);
if (isRow) {
......
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