mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-19 08:03:48 +02:00
Enable password strength meter on iOS
This commit is contained in:
parent
15ea9ec748
commit
a8e19b8fb6
@ -43,7 +43,7 @@ ColumnLayout {
|
||||
wizard.nextButton.enabled = passwordItem.password === retypePasswordItem.password
|
||||
|
||||
// TODO: password strength meter segfaults on Android.
|
||||
if (!isMobile) {
|
||||
if (!isAndroid) {
|
||||
// scorePassword returns value from 0 to... lots
|
||||
var strength = walletManager.getPasswordStrength(passwordItem.password);
|
||||
// consider anything below 10 bits as dire
|
||||
@ -88,8 +88,8 @@ ColumnLayout {
|
||||
}
|
||||
|
||||
PrivacyLevelSmall {
|
||||
visible: !isMobile //TODO: strength meter doesnt work on Android
|
||||
Layout.topMargin: isMobile ? 20 * scaleRatio : 40 * scaleRatio
|
||||
visible: !isAndroid //TODO: strength meter doesnt work on Android
|
||||
Layout.topMargin: isAndroid ? 20 * scaleRatio : 40 * scaleRatio
|
||||
Layout.fillWidth: true
|
||||
id: privacyLevel
|
||||
background: "#F0EEEE"
|
||||
|
Loading…
Reference in New Issue
Block a user