main: wizard: console.log fixes

This commit is contained in:
selsta
2020-10-08 21:22:27 +02:00
parent d3943ca2a9
commit 8ad5fd4c76
2 changed files with 1 additions and 2 deletions

View File

@@ -222,7 +222,6 @@ Rectangle {
validator: IntValidator { bottom: 1 }
text: persistentSettings.kdfRounds ? persistentSettings.kdfRounds : "1"
onTextChanged: {
console.log('x');
kdfRoundsText.text = persistentSettings.kdfRounds = parseInt(kdfRoundsText.text) >= 1 ? parseInt(kdfRoundsText.text) : 1;
}
}