mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 13:03:17 +01:00
also show balloon on sent transaction, to notify when coins sent
This commit is contained in:
parent
df5ccbd2b2
commit
4a843976e0
@ -399,7 +399,7 @@ void BitcoinGUI::incomingTransaction(const QModelIndex & parent, int start, int
|
||||
TransactionTableModel *ttm = walletModel->getTransactionTableModel();
|
||||
qint64 amount = ttm->index(start, TransactionTableModel::Amount, parent)
|
||||
.data(Qt::EditRole).toULongLong();
|
||||
if(amount>0 && !clientModel->inInitialBlockDownload())
|
||||
if(!clientModel->inInitialBlockDownload())
|
||||
{
|
||||
// On incoming transaction, make an info balloon
|
||||
// Unless the initial block download is in progress, to prevent balloon-spam
|
||||
@ -410,7 +410,8 @@ void BitcoinGUI::incomingTransaction(const QModelIndex & parent, int start, int
|
||||
QString address = ttm->index(start, TransactionTableModel::ToAddress, parent)
|
||||
.data().toString();
|
||||
|
||||
trayIcon->showMessage(tr("Incoming transaction"),
|
||||
trayIcon->showMessage((amount)<0 ? tr("Sent transaction") :
|
||||
tr("Incoming transaction"),
|
||||
tr("Date: ") + date + "\n" +
|
||||
tr("Amount: ") + GUIUtil::formatMoney(amount, true) + "\n" +
|
||||
tr("Type: ") + type + "\n" +
|
||||
|
Loading…
Reference in New Issue
Block a user