Commit 74e4f957 authored by Alexander.Trofimov's avatar Alexander.Trofimov

delete unused argument range

parent 3edb6b4e
......@@ -3702,9 +3702,8 @@
/**
* Рисует выделение вокруг ячеек
* @param {Asc.Range} [range]
*/
WorksheetView.prototype._drawSelection = function(range) {
WorksheetView.prototype._drawSelection = function () {
if (window['IS_NATIVE_EDITOR']) {
return;
}
......@@ -3726,7 +3725,7 @@
this._drawFormulaRanges(this.arrActiveFormulaRanges);
}
} else {
this._drawSelectionRange(range);
this._drawSelectionRange();
}
// restore canvas' original clipping range
......
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