#include "ui_BalanceDialog.h"
#include "libwalletqt/WalletManager.h"
+#include "model/ModelUtils.h"
BalanceDialog::BalanceDialog(QWidget *parent, Wallet *wallet)
: QDialog(parent)
"This will take 20 minutes on average.");
ui->label_unconfirmed->setText(WalletManager::displayAmount(wallet->balance() - wallet->unlockedBalance()));
+ ui->label_unconfirmed->setFont(ModelUtils::getMonospaceFont());
+
ui->label_spendable->setText(WalletManager::displayAmount(wallet->unlockedBalance()));
+ ui->label_spendable->setFont(ModelUtils::getMonospaceFont());
+
ui->label_total->setText(WalletManager::displayAmount(wallet->balance()));
+ ui->label_total->setFont(ModelUtils::getMonospaceFont());
this->adjustSize();
}