aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authormmbyday <bromark@protonmail.com>2018-12-04 13:56:21 -0500
committermmbyday <bromark@protonmail.com>2018-12-04 14:16:03 -0500
commit56bd6065e5aaa5f72b1a95fcc345bac666f38bcb (patch)
treed4ec008ca1f2f2bdd899fa622d20f227b1a1e632 /components
parent9f6b4334a19f3172a28b718da31222ded1f28254 (diff)
downloadmonzero-gui-56bd6065e5aaa5f72b1a95fcc345bac666f38bcb.tar.gz
monzero-gui-56bd6065e5aaa5f72b1a95fcc345bac666f38bcb.tar.xz
monzero-gui-56bd6065e5aaa5f72b1a95fcc345bac666f38bcb.zip
addressbook: improve readability by truncating long text and allowing wrapmode on address/description/paymentid fields
Diffstat (limited to 'components')
-rw-r--r--components/AddressBookTable.qml17
1 files changed, 15 insertions, 2 deletions
diff --git a/components/AddressBookTable.qml b/components/AddressBookTable.qml
index cae68d2f..00a29b9d 100644
--- a/components/AddressBookTable.qml
+++ b/components/AddressBookTable.qml
@@ -28,6 +28,7 @@
import QtQuick 2.0
import moneroComponents.Clipboard 1.0
+import "../js/TxUtils.js" as TxUtils
ListView {
id: listView
@@ -88,7 +89,13 @@ ListView {
font.family: "Arial"
font.pixelSize: 16
color: "#ffffff"
- text: address
+ text: {
+ if(isMobile){
+ TxUtils.addressTruncate(address, 6);
+ } else {
+ return TxUtils.addressTruncate(address, 10);
+ }
+ }
readOnly: true
}
@@ -117,7 +124,13 @@ ListView {
font.family: "Arial"
font.pixelSize: 13
color: "#545454"
- text: paymentId
+ text: {
+ if(isMobile){
+ TxUtils.addressTruncate(paymentId, 6);
+ } else {
+ return TxUtils.addressTruncate(paymentId, 10);
+ }
+ }
}
ListModel {