aboutsummaryrefslogtreecommitdiff
path: root/wizard
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2021-04-22 01:55:54 -0400
committerluigi1111 <luigi1111w@gmail.com>2021-04-22 01:55:54 -0400
commit46bc94fbe8dcf642996e17f643217405cb5529a4 (patch)
tree32bc6911927dc5c11ae89bc0dc17f03caa4e53cf /wizard
parent842a9278d0949bf001070a4b64b29d4b6ba41049 (diff)
parent820b221fa5775289ba68e9b3ecbf95749fff1b7e (diff)
downloadmonzero-gui-46bc94fbe8dcf642996e17f643217405cb5529a4.tar.gz
monzero-gui-46bc94fbe8dcf642996e17f643217405cb5529a4.tar.xz
monzero-gui-46bc94fbe8dcf642996e17f643217405cb5529a4.zip
Merge pull request #3419
820b221 WizardHome: fix kdf textbox displaying incorrect value (selsta)
Diffstat (limited to 'wizard')
-rw-r--r--wizard/WizardHome.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/wizard/WizardHome.qml b/wizard/WizardHome.qml
index 84b62f3e..53ddd815 100644
--- a/wizard/WizardHome.qml
+++ b/wizard/WizardHome.qml
@@ -223,7 +223,7 @@ Rectangle {
validator: IntValidator { bottom: 1 }
text: persistentSettings.kdfRounds ? persistentSettings.kdfRounds : "1"
onTextChanged: {
- kdfRoundsText.text = persistentSettings.kdfRounds = parseInt(kdfRoundsText.text) >= 1 ? parseInt(kdfRoundsText.text) : 1;
+ persistentSettings.kdfRounds = parseInt(kdfRoundsText.text) >= 1 ? parseInt(kdfRoundsText.text) : 1;
}
}