diff --git a/apps/spreadsheeteditor/main/app/controller/CellEditor.js b/apps/spreadsheeteditor/main/app/controller/CellEditor.js index 7c9c69def..6980b58c3 100644 --- a/apps/spreadsheeteditor/main/app/controller/CellEditor.js +++ b/apps/spreadsheeteditor/main/app/controller/CellEditor.js @@ -131,6 +131,8 @@ define([ if (state == Asc.c_oAscCellEditorState.editStart){ this.api.isCellEdited = true; this.editor.cellNameDisabled(true); + } else if (state == Asc.c_oAscCellEditorState.editInCell) { + this.api.isCEditorFocused = 'clear'; } else if (state == Asc.c_oAscCellEditorState.editEnd) { this.api.isCellEdited = false; this.api.isCEditorFocused = false;