Merge pull request #2864

ce4cb65 WizardAskPassword: hide strength if getPasswordStrength is missing (xiphon)
This commit is contained in:
luigi1111
2020-04-28 15:22:02 -05:00

View File

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