diff --git a/src/dialog/WalletCacheDebugDialog.cpp b/src/dialog/WalletCacheDebugDialog.cpp index a1b11e8..b3b9dc8 100644 --- a/src/dialog/WalletCacheDebugDialog.cpp +++ b/src/dialog/WalletCacheDebugDialog.cpp @@ -3,6 +3,7 @@ #include "WalletCacheDebugDialog.h" #include "ui_WalletCacheDebugDialog.h" +#include "model/ModelUtils.h" #include @@ -13,6 +14,8 @@ WalletCacheDebugDialog::WalletCacheDebugDialog(AppContext *ctx, QWidget *parent) { ui->setupUi(this); + ui->output->setFont(ModelUtils::getMonospaceFont()); + connect(ui->m_blockchain, &QRadioButton::pressed, [this]{ this->setOutput(m_ctx->currentWallet->printBlockchain()); });