diff --git a/wizard/WizardOptions.qml b/wizard/WizardOptions.qml index c4366307..b0fa0fd0 100644 --- a/wizard/WizardOptions.qml +++ b/wizard/WizardOptions.qml @@ -381,7 +381,7 @@ ColumnLayout { color: "#4A4949" text: persistentSettings.kdfRounds validator: IntValidator { bottom: 1 } - onTextEdited: { + onEditingFinished: { kdfRoundsText.text = persistentSettings.kdfRounds = parseInt(kdfRoundsText.text) >= 1 ? parseInt(kdfRoundsText.text) : 1; } }