summaryrefslogtreecommitdiffstats
path: root/gui/pages/global
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2014-11-09 19:48:35 +0100
committerPetr Mrázek <peterix@gmail.com>2014-11-09 19:48:35 +0100
commit24a0635b62071aee56c090283b8c8527174be039 (patch)
treec6db5f75c70fd5d907fbe210d8d2b74a3c329666 /gui/pages/global
parent2e9284951c7364dc766a406099ce3a779773abb1 (diff)
downloadMultiMC-24a0635b62071aee56c090283b8c8527174be039.tar
MultiMC-24a0635b62071aee56c090283b8c8527174be039.tar.gz
MultiMC-24a0635b62071aee56c090283b8c8527174be039.tar.lz
MultiMC-24a0635b62071aee56c090283b8c8527174be039.tar.xz
MultiMC-24a0635b62071aee56c090283b8c8527174be039.zip
Allow changing the console font family
Diffstat (limited to 'gui/pages/global')
-rw-r--r--gui/pages/global/MultiMCPage.cpp11
-rw-r--r--gui/pages/global/MultiMCPage.ui32
2 files changed, 38 insertions, 5 deletions
diff --git a/gui/pages/global/MultiMCPage.cpp b/gui/pages/global/MultiMCPage.cpp
index 4c050059..9e0a0ed8 100644
--- a/gui/pages/global/MultiMCPage.cpp
+++ b/gui/pages/global/MultiMCPage.cpp
@@ -293,6 +293,11 @@ void MultiMCPage::applySettings()
s->set("IconTheme", "multimc");
break;
}
+
+ // Console settings
+ QString consoleFontFamily = ui->consoleFont->currentFont().family();
+ s->set("ConsoleFont", consoleFontFamily);
+
// FTB
s->set("TrackFTBInstances", ui->trackFtbBox->isChecked());
s->set("FTBLauncherRoot", ui->ftbLauncherBox->text());
@@ -365,6 +370,12 @@ void MultiMCPage::loadSettings()
{
ui->themeComboBox->setCurrentIndex(0);
}
+
+ // Console settings
+ QString fontFamily = MMC->settings()->get("ConsoleFont").toString();
+ QFont consoleFont(fontFamily);
+ ui->consoleFont->setCurrentFont(consoleFont);
+
// FTB
ui->trackFtbBox->setChecked(s->get("TrackFTBInstances").toBool());
ui->ftbLauncherBox->setText(s->get("FTBLauncherRoot").toString());
diff --git a/gui/pages/global/MultiMCPage.ui b/gui/pages/global/MultiMCPage.ui
index 308d8842..81c21558 100644
--- a/gui/pages/global/MultiMCPage.ui
+++ b/gui/pages/global/MultiMCPage.ui
@@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
- <width>545</width>
- <height>609</height>
+ <width>556</width>
+ <height>559</height>
</rect>
</property>
<property name="sizePolicy">
@@ -42,7 +42,7 @@
<enum>QTabWidget::Rounded</enum>
</property>
<property name="currentIndex">
- <number>0</number>
+ <number>1</number>
</property>
<widget class="QWidget" name="featuresTab">
<attribute name="title">
@@ -280,7 +280,7 @@
<item>
<widget class="QRadioButton" name="sortLastLaunchedBtn">
<property name="text">
- <string>By last launched</string>
+ <string>By &amp;last launched</string>
</property>
<attribute name="buttonGroup">
<string notr="true">sortingModeGroup</string>
@@ -290,7 +290,7 @@
<item>
<widget class="QRadioButton" name="sortByNameBtn">
<property name="text">
- <string>By name</string>
+ <string>By &amp;name</string>
</property>
<attribute name="buttonGroup">
<string notr="true">sortingModeGroup</string>
@@ -370,6 +370,28 @@
</widget>
</item>
<item>
+ <widget class="QGroupBox" name="themeBox_2">
+ <property name="title">
+ <string>Console font</string>
+ </property>
+ <layout class="QVBoxLayout" name="verticalLayout_2">
+ <item>
+ <widget class="QFontComboBox" name="consoleFont">
+ <property name="sizePolicy">
+ <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
+ <horstretch>0</horstretch>
+ <verstretch>0</verstretch>
+ </sizepolicy>
+ </property>
+ <property name="fontFilters">
+ <set>QFontComboBox::MonospacedFonts</set>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </widget>
+ </item>
+ <item>
<spacer name="generalTabSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>