1
0

qml: multisig wizard check duplicate keys

This commit is contained in:
Sander van Grieken
2022-11-14 12:19:13 +01:00
parent 334bbf3505
commit ba2905105d
2 changed files with 30 additions and 4 deletions

View File

@@ -158,6 +158,7 @@ WizardComponent {
id: extendcb
Layout.columnSpan: 2
text: qsTr('Extend seed with custom words')
onCheckedChanged: validationTimer.restart()
}
TextField {
id: customwordstext
@@ -165,9 +166,7 @@ WizardComponent {
Layout.fillWidth: true
Layout.columnSpan: 2
placeholderText: qsTr('Enter your custom word(s)')
onTextChanged: {
validationTimer.restart()
}
onTextChanged: validationTimer.restart()
}
}
}