Hi,
When i create a native.newTextField() and change the font and create a placeholder all shows ok with correct font in Android and IOS.
if i put .isSecured=true after i change the the font, it will work fine on IOS, on Android it will not show the correct font (on simulator it will show the correct font).
if i change the font after i put .isSecured=true then it will show the correct font on IOS and Android.
.isSecured should not break the font selection.
code working:
defaultField = native.newTextField(width, height, width\_text, height ) defaultField.placeholder=placeholder defaultField.isSecure=isSecure defaultField.font=native.newFont( font, fontSize ) defaultField:resizeHeightToFitFont()
code not working:
defaultField = native.newTextField(width, height, width\_text, height ) defaultField.placeholder=placeholder defaultField.font=native.newFont( font, fontSize ) defaultField.isSecure=isSecure -- break the font selected in previews line (only on android) defaultField:resizeHeightToFitFont()