From 386d7739f1d71bfbf919ae0fb6943686e74c3d44 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 15 Mar 2018 17:14:09 +0300 Subject: [PATCH] For Bug 37192 --- apps/common/main/lib/component/ComboBoxFonts.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/common/main/lib/component/ComboBoxFonts.js b/apps/common/main/lib/component/ComboBoxFonts.js index 9ec995f7a..143c8a47f 100644 --- a/apps/common/main/lib/component/ComboBoxFonts.js +++ b/apps/common/main/lib/component/ComboBoxFonts.js @@ -320,6 +320,13 @@ define([ }, onApiChangeFont: function(font) { + var me = this; + setTimeout(function () { + me.onApiChangeFontInternal(font); + }, 100); + }, + + onApiChangeFontInternal: function(font) { if (this.inFormControl) return; var name = (_.isFunction(font.get_Name) ? font.get_Name() : font.asc_getName());