aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}
}