From c5c2a40ef5726ffcbf3e887c88012f24987fce9e Mon Sep 17 00:00:00 2001 From: Jaquee Date: Thu, 26 Jan 2017 21:54:31 +0100 Subject: Wizard: restore from keys --- wizard/WizardMemoTextInput.qml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'wizard/WizardMemoTextInput.qml') 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 -- cgit v1.2.3