aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaquee <jaquee.monero@gmail.com>2016-12-30 19:51:06 +0100
committerJaquee <jaquee.monero@gmail.com>2016-12-30 19:51:06 +0100
commit932d5bee4773b85b2ebe1aeecc008e896a7a6f6e (patch)
tree8e81513ffff448a77c014c8961a9553bc152f4ee
parentd8f9e7360fdbab910283c465aafe36149b1d7f26 (diff)
downloadmonzero-gui-932d5bee4773b85b2ebe1aeecc008e896a7a6f6e.tar.gz
monzero-gui-932d5bee4773b85b2ebe1aeecc008e896a7a6f6e.tar.xz
monzero-gui-932d5bee4773b85b2ebe1aeecc008e896a7a6f6e.zip
consistent layout seed textarea
-rw-r--r--pages/Settings.qml8
1 files changed, 5 insertions, 3 deletions
diff --git a/pages/Settings.qml b/pages/Settings.qml
index a54c936f..be4c2368 100644
--- a/pages/Settings.qml
+++ b/pages/Settings.qml
@@ -105,18 +105,20 @@ Rectangle {
TextArea {
id: memoTextInput
textMargin: 6
- font.family: "Arial"
- font.pointSize: 14
wrapMode: TextEdit.WordWrap
readOnly: true
selectByMouse: true
-
+ font.pixelSize: 18
Layout.fillWidth: true
Layout.preferredHeight: 100
Layout.alignment: Qt.AlignHCenter
text: qsTr("Click button to show seed") + translationManager.emptyString
+ style: TextAreaStyle {
+ backgroundColor: "#FFFFFF"
+ }
+
Image {
id : clipboardButton
anchors.right: memoTextInput.right