aboutsummaryrefslogtreecommitdiff
path: root/pages/AddressBook.qml
diff options
context:
space:
mode:
Diffstat (limited to 'pages/AddressBook.qml')
-rw-r--r--pages/AddressBook.qml10
1 files changed, 7 insertions, 3 deletions
diff --git a/pages/AddressBook.qml b/pages/AddressBook.qml
index 21e261e0..2b0e615e 100644
--- a/pages/AddressBook.qml
+++ b/pages/AddressBook.qml
@@ -58,29 +58,33 @@ Rectangle {
}
}
- LineEdit {
+ LineEditMulti {
Layout.fillWidth: true;
id: addressLine
labelText: qsTr("Address") + translationManager.emptyString
error: true;
placeholderText: qsTr("4.. / 8..") + translationManager.emptyString
+ wrapMode: Text.WrapAnywhere
+ addressValidation: true
}
}
- LineEdit {
+ LineEditMulti {
id: paymentIdLine
Layout.fillWidth: true;
labelText: qsTr("Payment ID <font size='2'>(Optional)</font>") + translationManager.emptyString
placeholderText: qsTr("Paste 64 hexadecimal characters") + translationManager.emptyString
+ wrapMode: Text.WrapAnywhere
// tipText: qsTr("<b>Payment ID</b><br/><br/>A unique user name used in<br/>the address book. It is not a<br/>transfer of information sent<br/>during the transfer")
// + translationManager.emptyString
}
- LineEdit {
+ LineEditMulti {
id: descriptionLine
Layout.fillWidth: true;
labelText: qsTr("Description <font size='2'>(Optional)</font>") + translationManager.emptyString
placeholderText: qsTr("Give this entry a name or description") + translationManager.emptyString
+ wrapMode: Text.WrapAnywhere
}