Commit 95f12481 authored by Alexander.Trofimov's avatar Alexander.Trofimov

delete 'false' in if

parent 0f742b18
......@@ -3463,7 +3463,7 @@ Woorksheet.prototype.initPostOpen = function(handlers){
} else {
var fs = formulaShared[oFormulaExt.si];
if (fs && fs.fRef.contains(oCell.nCol, oCell.nRow)) {
if (false && fs.fVal.isParsed) {
if (fs.fVal.isParsed) {
var off = oCell.getOffset3(fs.fRef.c1, fs.fRef.r1);
fs.fVal.changeOffset(off);
oFormulaExt.v = fs.fVal.assemble();
......
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