diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-01-26 14:29:40 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-01-26 14:29:40 -0500 |
| commit | ef6a6ed6519104f27777f8e508d8eeaf402cff30 (patch) | |
| tree | 0f34b050893c914520d4f00fee0e3c5a14631332 /components/HistoryTable.qml | |
| parent | b137f73440ccb1c848e88afbb3515d2ab771a7f4 (diff) | |
| parent | a6a7b56d730f9a0be9e7d24b0b589cb69cf5bd56 (diff) | |
| download | monzero-gui-ef6a6ed6519104f27777f8e508d8eeaf402cff30.tar.gz monzero-gui-ef6a6ed6519104f27777f8e508d8eeaf402cff30.tar.xz monzero-gui-ef6a6ed6519104f27777f8e508d8eeaf402cff30.zip | |
Merge pull request #977
cee0474 Subaddresses minimal version: supports default account only
a6a7b56 ditch payment ID from the Receive page
Diffstat (limited to 'components/HistoryTable.qml')
| -rw-r--r-- | components/HistoryTable.qml | 39 |
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 |
