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

fix bug 35847

parent 13587a15
......@@ -7897,9 +7897,27 @@
t.updateSelection();
}
} else {
// Сбрасываем параметры автозаполнения
t.activeFillHandle = null;
t.fillHandleDirection = -1;
// Перерисовываем
t._drawSelection();
}
};
if (this.model.inPivotTable(changedRange)) {
// Сбрасываем параметры автозаполнения
this.activeFillHandle = null;
this.fillHandleDirection = -1;
// Перерисовываем
this._drawSelection();
this.model.workbook.handlers.trigger("asc_onError", c_oAscError.ID.LockedCellPivot,
c_oAscError.Level.NoCritical);
return;
}
// Можно ли применять автозаполнение ?
this._isLockedCells(changedRange, /*subType*/null, applyFillHandleCallback);
} else {
......
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