Commit de19add9 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

При выходе из редактора ячейки закрываем подбор формулы.

Поправил баг http://bugzserver/show_bug.cgi?id=26373 (при нажатии esc и undoAll выводилось окно с подбором формулы).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58253 954022d7-b5bf-4e40-9824-e11837661b57
parent 264e40b4
...@@ -371,8 +371,8 @@ ...@@ -371,8 +371,8 @@
while (this.undoList.length > 0) { while (this.undoList.length > 0) {
this.undo(); this.undo();
} }
this.undoAllMode = false;
this._update(); this._update();
this.undoAllMode = false;
}; };
CellEditor.prototype.redo = function () { CellEditor.prototype.redo = function () {
...@@ -916,7 +916,8 @@ ...@@ -916,7 +916,8 @@
} }
} }
t.handlers.trigger("updated", s, t.cursorPos, isFormula, funcPos, funcName); if (!t.undoAllMode)
t.handlers.trigger("updated", s, t.cursorPos, isFormula, funcPos, funcName);
}; };
CellEditor.prototype._expandWidth = function () { CellEditor.prototype._expandWidth = function () {
......
...@@ -1100,6 +1100,13 @@ ...@@ -1100,6 +1100,13 @@
History._sendCanUndoRedo(); History._sendCanUndoRedo();
// Обновляем состояние информации // Обновляем состояние информации
this._onWSSelectionChanged(null); this._onWSSelectionChanged(null);
// Закрываем подбор формулы
if (this.popUpSelector) {
this.popUpSelector.hide();
this.lastFormulaPos = -1;
this.lastFormulaName = "";
}
}; };
WorkbookView.prototype._onEmpty = function () { WorkbookView.prototype._onEmpty = function () {
......
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