Commit 745b5efb authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix bug 34642

parent 1fbcd293
...@@ -1717,6 +1717,8 @@ ...@@ -1717,6 +1717,8 @@
CellEditor.prototype._removeChars = function (pos, length, isRange) { CellEditor.prototype._removeChars = function (pos, length, isRange) {
var t = this, opt = t.options, b, e, l, first, last; var t = this, opt = t.options, b, e, l, first, last;
this.sAutoComplete = null;
if (t.selectionBegin !== t.selectionEnd) { if (t.selectionBegin !== t.selectionEnd) {
b = Math.min(t.selectionBegin, t.selectionEnd); b = Math.min(t.selectionBegin, t.selectionEnd);
e = Math.max(t.selectionBegin, t.selectionEnd); e = Math.max(t.selectionBegin, t.selectionEnd);
......
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