From a98924fefad3f9c07cf9da2a4223d4fa020bd345 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 10 Sep 2018 12:50:06 +0300 Subject: [PATCH] [SSE] Fix Bug 38135 --- apps/spreadsheeteditor/main/app/controller/CellEditor.js | 2 ++ 1 file changed, 2 insertions(+) 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;