Merge pull request #1857

c484157 HistoryTable: icon for mining reward transactions (mmbyday)
This commit is contained in:
luigi1111 2018-12-26 16:12:12 -06:00
commit b3794a8ece
No known key found for this signature in database
GPG key ID: F4ACA0183641E010

View file

@ -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
}