diff options
author | Petr Mrázek <peterix@gmail.com> | 2016-11-04 00:19:32 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2016-11-04 00:19:32 +0100 |
commit | 3780a25d27ae5c803ce9ed075928fff365104987 (patch) | |
tree | f59f3c2bbb77b7a1bdfecb408bafa2f793030673 /application/pages/InstanceSettingsPage.cpp | |
parent | 6ebf6e7785da79f7f3eb28176951d0e9d22a20e8 (diff) | |
download | MultiMC-3780a25d27ae5c803ce9ed075928fff365104987.tar MultiMC-3780a25d27ae5c803ce9ed075928fff365104987.tar.gz MultiMC-3780a25d27ae5c803ce9ed075928fff365104987.tar.lz MultiMC-3780a25d27ae5c803ce9ed075928fff365104987.tar.xz MultiMC-3780a25d27ae5c803ce9ed075928fff365104987.zip |
NOISSUE add an option to show console on error and default other options to false
Diffstat (limited to 'application/pages/InstanceSettingsPage.cpp')
-rw-r--r-- | application/pages/InstanceSettingsPage.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/application/pages/InstanceSettingsPage.cpp b/application/pages/InstanceSettingsPage.cpp index 2922e469..82438583 100644 --- a/application/pages/InstanceSettingsPage.cpp +++ b/application/pages/InstanceSettingsPage.cpp @@ -47,11 +47,13 @@ void InstanceSettingsPage::applySettings() { m_settings->set("ShowConsole", ui->showConsoleCheck->isChecked()); m_settings->set("AutoCloseConsole", ui->autoCloseConsoleCheck->isChecked()); + m_settings->set("ShowConsoleOnError", ui->showConsoleErrorCheck->isChecked()); } else { m_settings->reset("ShowConsole"); m_settings->reset("AutoCloseConsole"); + m_settings->reset("ShowConsoleOnError"); } // Window Size @@ -137,6 +139,7 @@ void InstanceSettingsPage::loadSettings() ui->consoleSettingsBox->setChecked(m_settings->get("OverrideConsole").toBool()); ui->showConsoleCheck->setChecked(m_settings->get("ShowConsole").toBool()); ui->autoCloseConsoleCheck->setChecked(m_settings->get("AutoCloseConsole").toBool()); + ui->showConsoleErrorCheck->setChecked(m_settings->get("ShowConsoleOnError").toBool()); // Window Size ui->windowSizeGroupBox->setChecked(m_settings->get("OverrideWindow").toBool()); |