diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 9c5477232..18cae6ad0 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -1908,6 +1908,7 @@ define([ this._state.fastCoauth = false; Common.localStorage.setItem("de-settings-showchanges-strict", 'last'); this.api.SetCollaborativeMarksShowType(Asc.c_oAscCollaborativeMarksShowType.LastChanges); + this.getApplication().getController('Common.Controllers.ReviewChanges').applySettings(); } this.onEditComplete(); }, this) diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 2423b3e5a..45108c655 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -1625,6 +1625,7 @@ define([ Common.localStorage.setItem("pe-settings-coauthmode", 0); this.api.asc_SetFastCollaborative(false); Common.Utils.InternalSettings.set("pe-settings-coauthmode", false); + this.getApplication().getController('Common.Controllers.ReviewChanges').applySettings(); this._state.fastCoauth = false; } this.onEditComplete(); diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 0534ef5b9..da65b7a95 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -1854,6 +1854,7 @@ define([ Common.localStorage.setItem("sse-settings-coauthmode", 0); this.api.asc_SetFastCollaborative(false); Common.Utils.InternalSettings.set("sse-settings-coauthmode", false); + this.getApplication().getController('Common.Controllers.ReviewChanges').applySettings(); this._state.fastCoauth = false; } this.onEditComplete();