aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
}