Proofing refactoring

This commit is contained in:
Julia Radzhabova 2020-08-11 18:10:54 +03:00
parent c8fb569cf8
commit e073d601de

View file

@ -364,6 +364,7 @@ define([ 'text!common/main/lib/template/AutoCorrectDialog.template',
disabled ? this.api.asc_deleteFromAutoCorrectMathSymbols(rec.get('replaced')) : this.api.asc_AddOrEditFromAutoCorrectMathSymbols(rec.get('replaced'), rec.get('defaultValue')); disabled ? this.api.asc_deleteFromAutoCorrectMathSymbols(rec.get('replaced')) : this.api.asc_AddOrEditFromAutoCorrectMathSymbols(rec.get('replaced'), rec.get('defaultValue'));
} else { } else {
this.mathStore.remove(rec); this.mathStore.remove(rec);
this.mathList.scroller && this.mathList.scroller.update({});
this.api.asc_deleteFromAutoCorrectMathSymbols(rec.get('replaced')); this.api.asc_deleteFromAutoCorrectMathSymbols(rec.get('replaced'));
} }
this.updateControls(); this.updateControls();
@ -622,6 +623,7 @@ define([ 'text!common/main/lib/template/AutoCorrectDialog.template',
disabled ? this.api.asc_deleteFromAutoCorrectMathFunctions(rec.get('value')) : this.api.asc_AddFromAutoCorrectMathFunctions(rec.get('value')); disabled ? this.api.asc_deleteFromAutoCorrectMathFunctions(rec.get('value')) : this.api.asc_AddFromAutoCorrectMathFunctions(rec.get('value'));
} else { } else {
this.functionsStore.remove(rec); this.functionsStore.remove(rec);
this.mathRecList.scroller && this.mathRecList.scroller.update({});
this.api.asc_deleteFromAutoCorrectMathFunctions(rec.get('value')); this.api.asc_deleteFromAutoCorrectMathFunctions(rec.get('value'));
} }
this.updateRecControls(); this.updateRecControls();