[PE mobile] Fix Bug 47072

This commit is contained in:
Julia Radzhabova 2020-10-29 22:57:59 +03:00
parent 81f5be8fc9
commit 5724d78651

View file

@ -294,7 +294,7 @@ define([
_.isUndefined(fontSize) || fontSize=='' ? this.api.FontSizeIn() : fontSize = Math.min(100, ++fontSize);
}
if (! _.isUndefined(fontSize)) {
if (!(_.isUndefined(fontSize) || fontSize=='')) {
this.api.put_TextPrFontSize(fontSize);
}
},