diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-02-01 00:02:07 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-02-01 00:02:07 -0600 |
| commit | b78968b9d5c223b0777e710c8ba6d5c3f69fca9c (patch) | |
| tree | 8b839eea78889385acf62d1adcae2f3311447f74 /components/HistoryTable.qml | |
| parent | 9689fff957ba994b619a2a7fb881598a997f66c2 (diff) | |
| parent | d5a69cb638b86c06f1a7394c139565e0b6d22052 (diff) | |
| download | monzero-gui-b78968b9d5c223b0777e710c8ba6d5c3f69fca9c.tar.gz monzero-gui-b78968b9d5c223b0777e710c8ba6d5c3f69fca9c.tar.xz monzero-gui-b78968b9d5c223b0777e710c8ba6d5c3f69fca9c.zip | |
Merge pull request #1861
d5a69cb history: enable set_tx_note (mmbyday)
Diffstat (limited to 'components/HistoryTable.qml')
| -rw-r--r-- | components/HistoryTable.qml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/components/HistoryTable.qml b/components/HistoryTable.qml index 9ed575ca..ca6f1b41 100644 --- a/components/HistoryTable.qml +++ b/components/HistoryTable.qml @@ -376,14 +376,15 @@ ListView { // right column MoneroComponents.HistoryTableInnerColumn { - visible: currentWallet.getUserNote(hash) anchors.right: parent.right anchors.rightMargin: 80 * scaleRatio width: 220 * scaleRatio height: parent.height color: "transparent" + hashValue: hash + labelHeader: qsTr("Description") + translationManager.emptyString + labelHeaderIconImageSource: "../images/editIcon.png" - labelHeader: qsTr("Description") labelValue: { var note = currentWallet.getUserNote(hash); if(note){ @@ -393,9 +394,10 @@ ListView { return note; } } else { - return ""; + return qsTr("None") + translationManager.emptyString; } } + copyValue: { return currentWallet.getUserNote(hash); } |
