diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2017-01-30 17:11:30 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2017-01-30 17:11:30 -0600 |
| commit | 43d5bd3e2db54d0475a3a59e5a8859382aca732c (patch) | |
| tree | 8ece73e825dad43b42b6814d94e60814cd7c9520 /wizard/WizardMemoTextInput.qml | |
| parent | be564921d812667763b9e83cac9ca2dc814b0a01 (diff) | |
| parent | 04ff16ddb288d6b8ae6c7f4d4f74097bd700124b (diff) | |
| download | monzero-gui-43d5bd3e2db54d0475a3a59e5a8859382aca732c.tar.gz monzero-gui-43d5bd3e2db54d0475a3a59e5a8859382aca732c.tar.xz monzero-gui-43d5bd3e2db54d0475a3a59e5a8859382aca732c.zip | |
Merge pull request #437
Restore wallet from keys (Jaqueeee)
Diffstat (limited to 'wizard/WizardMemoTextInput.qml')
| -rw-r--r-- | wizard/WizardMemoTextInput.qml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/wizard/WizardMemoTextInput.qml b/wizard/WizardMemoTextInput.qml index 13540c80..dba96ada 100644 --- a/wizard/WizardMemoTextInput.qml +++ b/wizard/WizardMemoTextInput.qml @@ -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 |
