Wizard: restore from keys

This commit is contained in:
Jaquee
2017-01-26 21:54:31 +01:00
parent b3232dc26f
commit c5c2a40ef5
7 changed files with 240 additions and 181 deletions

View File

@@ -24,15 +24,27 @@ Column {
TextEdit {
id: memoTextInput
property alias placeholderText: memoTextPlaceholder.text
textMargin: 8
text: ""
font.family: "Arial"
font.pointSize: 16
font.pixelSize: 16
wrapMode: TextInput.Wrap
width: parent.width
selectByMouse: true
property int minimumHeight: 100
height: contentHeight > minimumHeight ? contentHeight : minimumHeight
Text {
id: memoTextPlaceholder
anchors.fill:parent
font.pixelSize: 16
anchors.margins: 8
font.bold:true
text: qsTr("Enter your 25 word mnemonic seed")
color: "#BABABA"
visible: !memoTextInput.text/* && !parent.focus*/
}
}
Image {
id : clipboardButton