From c484157068e8cca034106b642b5b9a6337549fe4 Mon Sep 17 00:00:00 2001 From: mmbyday Date: Fri, 21 Dec 2018 21:36:30 -0800 Subject: [PATCH] HistoryTable: icon for mining reward transactions --- components/HistoryTable.qml | 4 ++-- 1 file 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 }