diff options
| author | mmbyday <mmbyday@protonmail.com> | 2018-12-21 21:36:30 -0800 |
|---|---|---|
| committer | mmbyday <mmbyday@protonmail.com> | 2018-12-21 21:36:30 -0800 |
| commit | c484157068e8cca034106b642b5b9a6337549fe4 (patch) | |
| tree | 6a8bb9a9b76607b9fe0219e33d28362ce90ecd3a | |
| parent | 002c800ee82bc84c3caa5afc31e84ea0d33c0204 (diff) | |
| download | monzero-gui-c484157068e8cca034106b642b5b9a6337549fe4.tar.gz monzero-gui-c484157068e8cca034106b642b5b9a6337549fe4.tar.xz monzero-gui-c484157068e8cca034106b642b5b9a6337549fe4.zip | |
HistoryTable: icon for mining reward transactions
| -rw-r--r-- | components/HistoryTable.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/HistoryTable.qml b/components/HistoryTable.qml index d7eb6046..a1240ab7 100644 --- a/components/HistoryTable.qml +++ b/components/HistoryTable.qml @@ -138,9 +138,9 @@ ListView { Image { id: arrowImage - source: isOut ? "../images/downArrow.png" : "../images/upArrow-green.png" + source: isOut ? "../images/downArrow.png" : confirmationsRequired === 60 ? "../images/miningxmr.png" : "../images/upArrow-green.png" height: 18 * scaleRatio - width: 12 * scaleRatio + width: (confirmationsRequired === 60 ? 18 : 12) * scaleRatio anchors.top: parent.top anchors.topMargin: 12 * scaleRatio } |
