summaryrefslogtreecommitdiffstats
path: root/gui/pages/LogPage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gui/pages/LogPage.cpp')
-rw-r--r--gui/pages/LogPage.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/gui/pages/LogPage.cpp b/gui/pages/LogPage.cpp
index f16e3477..719eba03 100644
--- a/gui/pages/LogPage.cpp
+++ b/gui/pages/LogPage.cpp
@@ -1,6 +1,8 @@
#include "LogPage.h"
#include "ui_LogPage.h"
+#include "MultiMC.h"
+
#include <QIcon>
#include <QScrollBar>
#include <QShortcut>
@@ -18,11 +20,8 @@ LogPage::LogPage(MinecraftProcess *proc, QWidget *parent)
// create the format and set its font
defaultFormat = new QTextCharFormat(ui->text->currentCharFormat());
- QFont font;
- font.setFamily("Courier");
- font.setStyleHint(QFont::Monospace);
- font.setFixedPitch(true);
- defaultFormat->setFont(font);
+ QString fontFamily = MMC->settings()->get("ConsoleFont").toString();
+ defaultFormat->setFont(QFont(fontFamily));
auto findShortcut = new QShortcut(QKeySequence(QKeySequence::Find), this);
connect(findShortcut, SIGNAL(activated()), SLOT(findActivated()));