Commit f90839ab authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix bug 35852

disable replace for pivot
parent be5142c2
......@@ -11097,6 +11097,12 @@
WorksheetView.prototype._replaceCellsText = function (aReplaceCells, options, lockDraw, callback) {
var t = this;
if (this.model.inPivotTable(aReplaceCells)) {
options.error = true;
return callback(options);
}
var findFlags = "g"; // Заменяем все вхождения
if (true !== options.isMatchCase) {
findFlags += "i";
......
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