mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 11:39:25 +00:00
History: fix amount copy
This commit is contained in:
parent
a8eac7efeb
commit
d7caca6756
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ void HistoryWidget::copy(copyField field) {
|
|||
return tx->timestamp().toString(QString("%1 %2").arg(conf()->get(Config::dateFormat).toString(),
|
||||
conf()->get(Config::timeFormat).toString()));
|
||||
case copyField::Amount:
|
||||
return WalletManager::displayAmount(tx->balanceDelta());
|
||||
return WalletManager::displayAmount(abs(tx->balanceDelta()));
|
||||
default:
|
||||
return QString("");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue