diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-12-04 14:32:52 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-12-04 14:32:52 -0600 |
| commit | 71a1ff6677917e2c8be330c38fa6d3bfb79dffd2 (patch) | |
| tree | ec7eda8c94b2aa3d64fdad2e9fe83cd273283745 | |
| parent | b27632e1310f14858f41bc24474a4b2f0d6abfba (diff) | |
| parent | 8e0e088e707bcd454a7ebb12a90bbb73699b41f7 (diff) | |
| download | monzero-gui-71a1ff6677917e2c8be330c38fa6d3bfb79dffd2.tar.gz monzero-gui-71a1ff6677917e2c8be330c38fa6d3bfb79dffd2.tar.xz monzero-gui-71a1ff6677917e2c8be330c38fa6d3bfb79dffd2.zip | |
Merge pull request #1772
8e0e088 HistoryTable: missing TransactionID text fix (mmbyday)
| -rw-r--r-- | components/HistoryTable.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/HistoryTable.qml b/components/HistoryTable.qml index 0077c4d2..f4ccd914 100644 --- a/components/HistoryTable.qml +++ b/components/HistoryTable.qml @@ -293,7 +293,7 @@ ListView { anchors.left: parent.left anchors.leftMargin: 30 * scaleRatio - labelHeader: QsTr("Transaction ID") + translationManager.emptyString + labelHeader: qsTr("Transaction ID") + translationManager.emptyString labelValue: hash.substring(0, 18) + "..." copyValue: hash } |
