aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authormmbyday <mmbyday@protonmail.com>2018-12-21 21:36:30 -0800
committermmbyday <mmbyday@protonmail.com>2018-12-21 21:36:30 -0800
commitc484157068e8cca034106b642b5b9a6337549fe4 (patch)
tree6a8bb9a9b76607b9fe0219e33d28362ce90ecd3a /components
parent002c800ee82bc84c3caa5afc31e84ea0d33c0204 (diff)
downloadmonzero-gui-c484157068e8cca034106b642b5b9a6337549fe4.tar.gz
monzero-gui-c484157068e8cca034106b642b5b9a6337549fe4.tar.xz
monzero-gui-c484157068e8cca034106b642b5b9a6337549fe4.zip
HistoryTable: icon for mining reward transactions
Diffstat (limited to 'components')
-rw-r--r--components/HistoryTable.qml4
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
}