mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
Balance: don't use scientific notation
This commit is contained in:
parent
f029820a37
commit
3888e121d5
2 changed files with 3 additions and 3 deletions
|
@ -740,10 +740,10 @@ void AppContext::updateBalance() {
|
|||
throw std::runtime_error("this should not happen, ever");
|
||||
|
||||
AppContext::balance = this->currentWallet->balance() / AppContext::cdiv;
|
||||
auto balance_str = QString::number(balance);
|
||||
auto balance_str = QString::number(balance, 'f');
|
||||
|
||||
double unlocked = this->currentWallet->unlockedBalance() / AppContext::cdiv;
|
||||
auto unlocked_str = QString::number(unlocked);
|
||||
auto unlocked_str = QString::number(unlocked, 'f');
|
||||
|
||||
emit balanceUpdated(balance, unlocked, balance_str, unlocked_str);
|
||||
}
|
||||
|
|
|
@ -589,7 +589,7 @@ void MainWindow::onBalanceUpdated(double balance, double unlocked, const QString
|
|||
qDebug() << Q_FUNC_INFO;
|
||||
auto label_str = QString("Balance: %1 XMR").arg(unlocked_str);
|
||||
if(balance > unlocked)
|
||||
label_str += QString(" (+%1 XMR unconfirmed)").arg(balance - unlocked);
|
||||
label_str += QString(" (+%1 XMR unconfirmed)").arg(QString::number(balance - unlocked, 'f'));
|
||||
m_statusLabelBalance->setText(label_str);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue