Commit 09edaef6 authored by GoshaZotov's avatar GoshaZotov

cRef.prototype.isHidden: this._valid -> this.isValid()

parent 7e5f3e7d
...@@ -1570,7 +1570,7 @@ parserHelp.setDigitSeparator(AscCommon.g_oDefaultCultureInfo.NumberDecimalSepara ...@@ -1570,7 +1570,7 @@ parserHelp.setDigitSeparator(AscCommon.g_oDefaultCultureInfo.NumberDecimalSepara
if (!excludeHiddenRows) { if (!excludeHiddenRows) {
excludeHiddenRows = this.ws.isApplyFilterBySheet(); excludeHiddenRows = this.ws.isApplyFilterBySheet();
} }
return excludeHiddenRows && this._valid && this.ws.getRowHidden(this.getRange().r1); return excludeHiddenRows && this.isValid() && this.ws.getRowHidden(this.getRange().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