Embedded: fix password mask character

This commit is contained in:
Floris Bos 2022-02-23 16:47:04 +01:00
parent 78f003fca7
commit 6edd14f044

View file

@ -552,6 +552,13 @@ Popup {
chkSkipFirstUse.checked = true
}
if (imageWriter.isEmbeddedMode()) {
/* For some reason there is no password mask character set by default on Embedded edition */
var bulletCharacter = String.fromCharCode(0x2022);
fieldUserPassword.passwordCharacter = bulletCharacter;
fieldWifiPassword.passwordCharacter = bulletCharacter;
}
initialized = true
}