[PE mobile] Fix Bug 47072
This commit is contained in:
parent
065cb19646
commit
e343a3a4f6
|
@ -138,7 +138,7 @@ class EditTextController extends Component {
|
||||||
} else {
|
} else {
|
||||||
typeof size === 'undefined' || size == '' ? api.FontSizeIn() : size = Math.min(300, ++size);
|
typeof size === 'undefined' || size == '' ? api.FontSizeIn() : size = Math.min(300, ++size);
|
||||||
}
|
}
|
||||||
if (typeof size !== 'undefined' || size == '') {
|
if (typeof size !== 'undefined' && size !== '') {
|
||||||
api.put_TextPrFontSize(size);
|
api.put_TextPrFontSize(size);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue