From f8cfafecf52a554362a23217ab10092dcf1ec57b Mon Sep 17 00:00:00 2001 From: Konstantin Kireyev Date: Tue, 17 Sep 2024 18:53:07 +0500 Subject: [PATCH] fix/[se]: bug 70183 --- apps/spreadsheeteditor/main/app/controller/Spellcheck.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/controller/Spellcheck.js b/apps/spreadsheeteditor/main/app/controller/Spellcheck.js index 76e10478b8..11f5812304 100644 --- a/apps/spreadsheeteditor/main/app/controller/Spellcheck.js +++ b/apps/spreadsheeteditor/main/app/controller/Spellcheck.js @@ -81,12 +81,12 @@ define([ Common.NotificationCenter.trigger('script:loaded:spellcheck'); if (this.api) { this.api.asc_registerCallback('asc_onSpellCheckVariantsFound', _.bind(this.onSpellCheckVariantsFound, this)); + this.api.asc_registerCallback('asc_onEditCell', _.bind(this.onApiEditCell, this)); } }, setApi: function(api) { this.api = api; - this.api.asc_registerCallback('asc_onEditCell', _.bind(this.onApiEditCell, this)); return this; },