Community
Participate
Working Groups
Currently the input manager from compare-container is very simple : just provide the file content for save command. When editorCommandFactory execute the save command , we also need the inout manager compare editor to provide afterSaveCallBack function so that the generateEditorCommands knows that if this function from the input manager is there then it should be called.
fixed with 769ea8ed1d9dc6146b24ab64ab77fe857493fdff. In editorCommandFactory , I am checking below if(this.inputManager.afterSave){ this.inputManager.afterSave(); }
The afterSave function is currently provided only by the input manager from compare editor.