[DE] Bug in ComboBoxFonts when recent: 0 (in the DropCapSettings dialog).

This commit is contained in:
Julia Radzhabova 2017-05-24 15:04:06 +03:00
parent a3c2858be1
commit b96f4fd72e

View file

@ -383,12 +383,11 @@ define([
} }
$(this.el).find('ul').scrollTop(0); $(this.el).find('ul').scrollTop(0);
this.trigger('show:after', this, e); this.trigger('show:after', this, e);
this.flushVisibleFontsTiles();
this.updateVisibleFontsTiles(null, 0);
} else { } else {
Common.UI.ComboBox.prototype.onAfterShowMenu.apply(this, arguments); Common.UI.ComboBox.prototype.onAfterShowMenu.apply(this, arguments);
} }
this.flushVisibleFontsTiles();
this.updateVisibleFontsTiles(null, 0);
}, },
onAfterHideMenu: function(e) { onAfterHideMenu: function(e) {
@ -399,6 +398,8 @@ define([
}, },
addItemToRecent: function(record) { addItemToRecent: function(record) {
if (this.recent<1) return;
if (record.get('type') != FONT_TYPE_RECENT && if (record.get('type') != FONT_TYPE_RECENT &&
!this.store.findWhere({name: record.get('name'),type:FONT_TYPE_RECENT})) { !this.store.findWhere({name: record.get('name'),type:FONT_TYPE_RECENT})) {
var fonts = this.store.where({type:FONT_TYPE_RECENT}); var fonts = this.store.where({type:FONT_TYPE_RECENT});