diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2021-04-22 01:55:54 -0400 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2021-04-22 01:55:54 -0400 |
| commit | 46bc94fbe8dcf642996e17f643217405cb5529a4 (patch) | |
| tree | 32bc6911927dc5c11ae89bc0dc17f03caa4e53cf /wizard | |
| parent | 842a9278d0949bf001070a4b64b29d4b6ba41049 (diff) | |
| parent | 820b221fa5775289ba68e9b3ecbf95749fff1b7e (diff) | |
| download | monzero-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.qml | 2 |
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; } } |
