Fix the problem with font combobox
This commit is contained in:
parent
f62aa45b18
commit
49b2c49a84
|
@ -382,6 +382,12 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
itemClicked: function (e) {
|
itemClicked: function (e) {
|
||||||
|
this.__name = undefined;
|
||||||
|
if (!this.__nameId) {
|
||||||
|
clearTimeout(this.__nameId);
|
||||||
|
this.__nameId = undefined;
|
||||||
|
}
|
||||||
|
|
||||||
Common.UI.ComboBox.prototype.itemClicked.apply(this, arguments);
|
Common.UI.ComboBox.prototype.itemClicked.apply(this, arguments);
|
||||||
|
|
||||||
var el = $(e.target).closest('li');
|
var el = $(e.target).closest('li');
|
||||||
|
|
Loading…
Reference in a new issue