diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-08-23 21:22:50 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-08-23 21:22:50 +0200 |
| commit | c04417d37b80752e4f4e6b2ea1d6c702aeabd18a (patch) | |
| tree | c9096a2df37aa38d2995a3fb4e2603263b55dc8a /components | |
| parent | 7521472325f430995e694df7823f43a383909489 (diff) | |
| parent | a7f52db61386e1af24ce3aa3836f6991decebae3 (diff) | |
| download | monzero-gui-c04417d37b80752e4f4e6b2ea1d6c702aeabd18a.tar.gz monzero-gui-c04417d37b80752e4f4e6b2ea1d6c702aeabd18a.tar.xz monzero-gui-c04417d37b80752e4f4e6b2ea1d6c702aeabd18a.zip | |
Merge pull request #807
a7f52db History: Support coinbase txs requires #2247 (Jaquee)
Diffstat (limited to 'components')
| -rw-r--r-- | components/HistoryTable.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/HistoryTable.qml b/components/HistoryTable.qml index 933c606c..082822d3 100644 --- a/components/HistoryTable.qml +++ b/components/HistoryTable.qml @@ -259,11 +259,11 @@ ListView { //elide: Text.ElideRight font.family: "Arial" font.pixelSize: 13 - color: (confirmations < 10)? "#FF6C3C" : "#545454" + color: (confirmations < confirmationsRequired)? "#FF6C3C" : "#545454" text: { if (!isPending) - if(confirmations < 10) - return blockHeight + " " + qsTr("(%1/10 confirmations)").arg(confirmations) + if(confirmations < confirmationsRequired) + return blockHeight + " " + qsTr("(%1/%2 confirmations)").arg(confirmations).arg(confirmationsRequired) else return blockHeight if (!isOut) |
