diff --git a/components/InputMulti.qml b/components/InputMulti.qml
index 2839db3a..9917eb52 100644
--- a/components/InputMulti.qml
+++ b/components/InputMulti.qml
@@ -38,11 +38,12 @@ TextArea {
property bool addressValidation: false
property bool wrapAnywhere: true
property int fontSize: 18 * scaleRatio
+ property bool fontBold: false
id: textArea
font.family: Style.fontRegular.name
font.pixelSize: fontSize
- font.bold: false
+ font.bold: fontBold
horizontalAlignment: TextInput.AlignLeft
selectByMouse: true
color: Style.defaultFontColor
diff --git a/components/LineEditMulti.qml b/components/LineEditMulti.qml
index b0669aaa..8609aaa4 100644
--- a/components/LineEditMulti.qml
+++ b/components/LineEditMulti.qml
@@ -46,6 +46,7 @@ ColumnLayout {
property bool wrapAnywhere: true
property bool showingHeader: true
property bool showBorder: true
+ property bool fontBold: false
property int fontSize: 16 * scaleRatio
signal labelButtonClicked();
@@ -103,6 +104,7 @@ ColumnLayout {
bottomPadding: 10 * scaleRatio
wrapAnywhere: parent.wrapAnywhere
fontSize: parent.fontSize
+ fontBold: parent.fontBold
Text {
id: placeholderLabel
diff --git a/pages/Transfer.qml b/pages/Transfer.qml
index f9c91396..a3e038a3 100644
--- a/pages/Transfer.qml
+++ b/pages/Transfer.qml
@@ -189,6 +189,7 @@ Rectangle {
labelText: qsTr("Amount") + translationManager.emptyString
placeholderText: qsTr("") + translationManager.emptyString
width: 100
+ fontBold: true
inlineButtonText: qsTr("All") + translationManager.emptyString
inlineButton.onClicked: amountLine.text = "(all)"
@@ -252,6 +253,7 @@ Rectangle {
LineEditMulti {
id: addressLine
spacing: 0
+ fontBold: true
labelText: qsTr("\
Address ( Address book )")
+ translationManager.emptyString
@@ -308,6 +310,7 @@ Rectangle {
// payment id input
LineEdit {
id: paymentIdLine
+ fontBold: true
labelText: qsTr("Payment ID ( Optional )") + translationManager.emptyString
placeholderText: qsTr("16 or 64 hexadecimal characters") + translationManager.emptyString
Layout.fillWidth: true