mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-09 19:32:03 +02:00
TextField.onEditingFinished() is not available in Qt versions lower than 5.9. Replace with onEditingFinished()
This commit is contained in:
parent
71a1ff6677
commit
e650818016
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user