From: tobtoht Date: Thu, 21 Oct 2021 19:43:46 +0000 (+0200) Subject: History: copy amount now copies value shown in table X-Git-Url: https://git.nutra.tk/v2?a=commitdiff_plain;h=e2a21868e99beb111910a0a26697c58ed97a9fff;p=gamesguru%2Ffeather.git History: copy amount now copies value shown in table --- diff --git a/src/HistoryWidget.cpp b/src/HistoryWidget.cpp index e6e66d56..17744704 100644 --- a/src/HistoryWidget.cpp +++ b/src/HistoryWidget.cpp @@ -160,7 +160,7 @@ void HistoryWidget::copy(copyField field) { case copyField::Date: return tx->timestamp().toString("yyyy-MM-dd HH:mm"); case copyField::Amount: - return tx->displayAmount(); + return WalletManager::displayAmount(tx->balanceDelta()); default: return QString(""); }