Commit 7d1a653d authored by GoshaZotov's avatar GoshaZotov

fix bug: pasted formula if user click "paste only value"(special paste)

parent e7ca98ab
......@@ -9838,6 +9838,10 @@
var cellValueData = newVal.getValueData();
if(cellValueData && cellValueData.value)
{
if(!specialPasteProps.formula)
{
cellValueData.formula = null;
}
rangeStyle.cellValueData = cellValueData;
}
else if(cellValueData && cellValueData.formula && !specialPasteProps.formula)
......
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