|
|
|
@ -48,7 +48,12 @@ WizardComponent { |
|
|
|
Layout.fillWidth: true |
|
|
|
Layout.fillWidth: true |
|
|
|
iconStyle: InfoTextArea.IconStyle.Warn |
|
|
|
iconStyle: InfoTextArea.IconStyle.Warn |
|
|
|
} |
|
|
|
} |
|
|
|
Label { text: qsTr('Your wallet generation seed is:') } |
|
|
|
|
|
|
|
|
|
|
|
Label { |
|
|
|
|
|
|
|
Layout.topMargin: constants.paddingMedium |
|
|
|
|
|
|
|
text: qsTr('Your wallet generation seed is:') |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
SeedTextArea { |
|
|
|
SeedTextArea { |
|
|
|
id: seedtext |
|
|
|
id: seedtext |
|
|
|
readOnly: true |
|
|
|
readOnly: true |
|
|
|
@ -60,16 +65,19 @@ WizardComponent { |
|
|
|
visible: seedtext.text == '' |
|
|
|
visible: seedtext.text == '' |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
CheckBox { |
|
|
|
CheckBox { |
|
|
|
id: extendcb |
|
|
|
id: extendcb |
|
|
|
text: qsTr('Extend seed with custom words') |
|
|
|
text: qsTr('Extend seed with custom words') |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
TextField { |
|
|
|
TextField { |
|
|
|
id: customwordstext |
|
|
|
id: customwordstext |
|
|
|
visible: extendcb.checked |
|
|
|
visible: extendcb.checked |
|
|
|
Layout.fillWidth: true |
|
|
|
Layout.fillWidth: true |
|
|
|
placeholderText: qsTr('Enter your custom word(s)') |
|
|
|
placeholderText: qsTr('Enter your custom word(s)') |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Component.onCompleted : { |
|
|
|
Component.onCompleted : { |
|
|
|
setWarningText(12) |
|
|
|
setWarningText(12) |
|
|
|
} |
|
|
|
} |
|
|
|
|