Fix the problem with font combobox

This commit is contained in:
KirillovIlya 2021-02-10 16:06:02 +03:00
parent f62aa45b18
commit 49b2c49a84

View file

@ -382,6 +382,12 @@ define([
},
itemClicked: function (e) {
this.__name = undefined;
if (!this.__nameId) {
clearTimeout(this.__nameId);
this.__nameId = undefined;
}
Common.UI.ComboBox.prototype.itemClicked.apply(this, arguments);
var el = $(e.target).closest('li');