mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
MerchantTrackingList: point out unconfirmed amount
This commit is contained in:
parent
585fb2810d
commit
b245d0af7a
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ ListView {
|
||||||
font.pixelSize: 14
|
font.pixelSize: 14
|
||||||
font.bold: true
|
font.bold: true
|
||||||
color: hide_amount ? "#707070" : "#009F1E"
|
color: hide_amount ? "#707070" : "#009F1E"
|
||||||
text: hide_amount ? '-' : '+' + amount
|
text: hide_amount ? '-' : '+' + amount + (in_txpool ? ' (%1)'.arg(qsTr('unconfirmed')) : '')
|
||||||
selectionColor: MoneroComponents.Style.textSelectionColor
|
selectionColor: MoneroComponents.Style.textSelectionColor
|
||||||
selectByMouse: true
|
selectByMouse: true
|
||||||
readOnly: true
|
readOnly: true
|
||||||
|
|
Loading…
Reference in a new issue