From 820b221fa5775289ba68e9b3ecbf95749fff1b7e Mon Sep 17 00:00:00 2001 From: selsta Date: Tue, 20 Apr 2021 21:28:04 +0200 Subject: [PATCH] WizardHome: fix kdf textbox displaying incorrect value --- wizard/WizardHome.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }