Merge pull request #819 from ONLYOFFICE/fix/bugfix

Fix Bug 49762 (Revert rev. 6014823eb3)
This commit is contained in:
Julia Radzhabova 2021-04-20 15:32:52 +03:00 committed by GitHub
commit 41097a321d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -356,19 +356,20 @@ define([
var me = this;
var name = (_.isFunction(font.get_Name) ? font.get_Name() : font.asc_getFontName());
if (this.__name !== name) {
this.__name = name;
if (!this.__nameId) {
this.__nameId = setTimeout(function () {
me.onApiChangeFontInternal(name);
me.onApiChangeFontInternal(me.__name);
me.__nameId = null;
}, 100);
}
}
},
onApiChangeFontInternal: function(name) {
if (this.inFormControl) return;
this.__name = name;
if (this.getRawValue() !== name) {
var record = this.store.findWhere({
name: name