aboutsummaryrefslogtreecommitdiff
path: root/components/HistoryTable.qml
diff options
context:
space:
mode:
authorkenshi84 <kenshi84@protonmail.ch>2017-07-04 12:34:09 +0900
committerkenshi84 <kenshi84@protonmail.ch>2018-01-13 14:37:07 +0900
commitcee0474e375a70d55200209bfa2387fd5242dd8f (patch)
tree66c029e1bda47e02c01de77180b0579a06fc7bd8 /components/HistoryTable.qml
parent3b069ec04908f76b8244a96124ce9619c0b0300d (diff)
downloadmonzero-gui-cee0474e375a70d55200209bfa2387fd5242dd8f.tar.gz
monzero-gui-cee0474e375a70d55200209bfa2387fd5242dd8f.tar.xz
monzero-gui-cee0474e375a70d55200209bfa2387fd5242dd8f.zip
Subaddresses minimal version: supports default account only
Diffstat (limited to 'components/HistoryTable.qml')
-rw-r--r--components/HistoryTable.qml39
1 files changed, 39 insertions, 0 deletions
diff --git a/components/HistoryTable.qml b/components/HistoryTable.qml
index ba3971b5..633998ee 100644
--- a/components/HistoryTable.qml
+++ b/components/HistoryTable.qml
@@ -266,6 +266,45 @@ ListView {
}
}
+ Item { //separator
+ width: 100
+ height: 14
+ }
+ // -- "Received by" title
+ Text {
+ anchors.bottom: parent.bottom
+ font.family: "Arial"
+ font.pixelSize: 12
+ color: "#535353"
+ text: (isOut ? qsTr("Spent from:") : qsTr("Received by:")) + translationManager.emptyString
+ }
+ Item { //separator
+ width: 5
+ height: 14
+ }
+ // -- "Index" value
+ Text {
+ anchors.bottom: parent.bottom
+ font.family: "Arial"
+ font.pixelSize: 13
+ font.bold: true
+ color: "#545454"
+ text: "#" + subaddrIndex
+ }
+ Item { //separator
+ width: 5
+ height: 14
+ }
+ // -- "Label" value
+ Text {
+ anchors.bottom: parent.bottom
+ font.family: "Arial"
+ font.pixelSize: 13
+ color: "#545454"
+ text: label
+ elide: Text.ElideRight
+ width: detailsButton.x - x - 30
+ }
}
// -- "Date", "Balance" and "Amound" section