aboutsummaryrefslogtreecommitdiff
path: root/components/LineEditMulti.qml
diff options
context:
space:
mode:
authorSander Ferdinand <sa.ferdinand@gmail.com>2018-01-28 00:14:42 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-03-29 23:04:03 +0100
commit49770494251a318da37849f1c628f25edaf94483 (patch)
tree59102bc024ced24aa836ae392f3a98712a09e461 /components/LineEditMulti.qml
parent53b5b7a5c7a7894c04bdedad345f733be1dd34b7 (diff)
downloadmonzero-gui-49770494251a318da37849f1c628f25edaf94483.tar.gz
monzero-gui-49770494251a318da37849f1c628f25edaf94483.tar.xz
monzero-gui-49770494251a318da37849f1c628f25edaf94483.zip
Fixes some fonts, introduces a new checkbox and fixes 0 amount history entries
Diffstat (limited to 'components/LineEditMulti.qml')
-rw-r--r--components/LineEditMulti.qml6
1 files changed, 4 insertions, 2 deletions
diff --git a/components/LineEditMulti.qml b/components/LineEditMulti.qml
index 5cc76e2d..43d67602 100644
--- a/components/LineEditMulti.qml
+++ b/components/LineEditMulti.qml
@@ -39,9 +39,10 @@ ColumnLayout {
property alias readOnly: multiLine.readOnly
property alias addressValidation: multiLine.addressValidation
property alias labelButtonText: labelButton.text
- property bool labelFontBold: true
+ property bool labelFontBold: false
property bool labelButtonVisible: false
property bool copyButton: false
+ property bool wrapAnywhere: true
signal labelButtonClicked();
signal inputLabelLinkActivated();
@@ -56,7 +57,7 @@ ColumnLayout {
id: inputLabel
anchors.top: parent.top
anchors.left: parent.left
- font.family: Style.fontRegular.name
+ font.family: Style.fontLight
font.pixelSize: 14 * scaleRatio
font.bold: labelFontBold
textFormat: Text.RichText
@@ -94,6 +95,7 @@ ColumnLayout {
Layout.fillWidth: true
topPadding: 10 * scaleRatio
bottomPadding: 10 * scaleRatio
+ wrapAnywhere: parent.wrapAnywhere
Text {
id: placeholderLabel