mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 07:55:21 +01:00
Embedded: fix password mask character
This commit is contained in:
parent
78f003fca7
commit
6edd14f044
1 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue