From 3f489b35584a2642e806cd303b4864cf5e5ea8ab Mon Sep 17 00:00:00 2001 From: tobtoht Date: Wed, 3 Feb 2021 17:01:19 +0100 Subject: [PATCH] WalletCacheDebug: use monospace font --- src/dialog/WalletCacheDebugDialog.cpp | 3 +++ 1 file changed, 3 insertions(+) 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()); });