diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-12-11 13:59:03 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-12-11 13:59:03 -0600 |
| commit | f8cd4c86d91b6e197366148a0c8eb663d449252f (patch) | |
| tree | 13aca96085598251ae0ed993c4eae8e3a1901a6e /wizard | |
| parent | bd451e1402c630785537f782d2625dc392d98440 (diff) | |
| parent | b466f9fe969a5442b7a301ecbf9a6f43afd4352d (diff) | |
| download | monzero-gui-f8cd4c86d91b6e197366148a0c8eb663d449252f.tar.gz monzero-gui-f8cd4c86d91b6e197366148a0c8eb663d449252f.tar.xz monzero-gui-f8cd4c86d91b6e197366148a0c8eb663d449252f.zip | |
Merge pull request #1794
e650818 TextField.onEditingFinished() is not available in Qt versions lower than 5.9. Replace with onEditingFinished() (xmrdsc)
b466f9f string.startsWith() is not available in Qt versions lower than 5.8. Replace with string.indexOf() (xmrdsc)
Diffstat (limited to 'wizard')
| -rw-r--r-- | wizard/WizardOptions.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wizard/WizardOptions.qml b/wizard/WizardOptions.qml index 1f39d86e..b4cc7571 100644 --- a/wizard/WizardOptions.qml +++ b/wizard/WizardOptions.qml @@ -385,7 +385,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; } } |
