Merge pull request #2864

ce4cb65 WizardAskPassword: hide strength if getPasswordStrength is missing (xiphon)
pull/7/head
luigi1111 4 years ago
commit 30c54b1c6e
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -47,7 +47,7 @@ ColumnLayout {
} }
function calcPasswordStrength(inp) { function calcPasswordStrength(inp) {
if(isAndroid) return; if(!progressLayout.visible) return;
if(passwordInput.text.length <= 1){ if(passwordInput.text.length <= 1){
root.passwordFill = 0; root.passwordFill = 0;
progressText.text = passwordStrengthText + qsTr("Low") + translationManager.emptyString; progressText.text = passwordStrengthText + qsTr("Low") + translationManager.emptyString;
@ -91,8 +91,9 @@ ColumnLayout {
} }
ColumnLayout { ColumnLayout {
id: progressLayout
spacing: 0 spacing: 0
visible: !isAndroid visible: !isAndroid && walletManager.getPasswordStrength !== undefined
Layout.fillWidth: true Layout.fillWidth: true
TextInput { TextInput {