diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-12-26 16:12:12 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-12-26 16:12:12 -0600 |
| commit | b3794a8ece0fbe665cd46f6d4b5c9fb39091ed1e (patch) | |
| tree | 27a8b9c7b5589cd5dd6f2d3ece68d0af5ededc55 /components | |
| parent | b88ac2baa9244aed10aafa2b91ae3442651c4ef9 (diff) | |
| parent | c484157068e8cca034106b642b5b9a6337549fe4 (diff) | |
| download | monzero-gui-b3794a8ece0fbe665cd46f6d4b5c9fb39091ed1e.tar.gz monzero-gui-b3794a8ece0fbe665cd46f6d4b5c9fb39091ed1e.tar.xz monzero-gui-b3794a8ece0fbe665cd46f6d4b5c9fb39091ed1e.zip | |
Merge pull request #1857
c484157 HistoryTable: icon for mining reward transactions (mmbyday)
Diffstat (limited to 'components')
| -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 } |
