diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-08-03 15:57:33 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-08-03 15:57:33 +0200 |
commit | 13b1b98f7cf8a3b3b2c15dd42f96537b02c00711 (patch) | |
tree | ff3a67221e90eb9aa067e0b0d1f934fd4dd28534 /gui/settingsdialog.cpp | |
parent | 2e0cbf393a5320dbf5448ca44a9b5905314b0be8 (diff) | |
download | PrismLauncher-13b1b98f7cf8a3b3b2c15dd42f96537b02c00711.tar.gz PrismLauncher-13b1b98f7cf8a3b3b2c15dd42f96537b02c00711.tar.bz2 PrismLauncher-13b1b98f7cf8a3b3b2c15dd42f96537b02c00711.zip |
WTF, I don't even...
Diffstat (limited to 'gui/settingsdialog.cpp')
-rw-r--r-- | gui/settingsdialog.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gui/settingsdialog.cpp b/gui/settingsdialog.cpp index 52867169..d3be9cd3 100644 --- a/gui/settingsdialog.cpp +++ b/gui/settingsdialog.cpp @@ -122,7 +122,6 @@ void SettingsDialog::applySettings(SettingsObject *s) s->set("AutoCloseConsole", ui->autoCloseConsoleCheck->isChecked()); // Window Size - s->set("LaunchCompatMode", ui->compatModeCheckBox->isChecked()); s->set("LaunchMaximized", ui->maximizedCheckBox->isChecked()); s->set("MinecraftWinWidth", ui->windowWidthSpinBox->value()); s->set("MinecraftWinHeight", ui->windowHeightSpinBox->value()); @@ -159,7 +158,6 @@ void SettingsDialog::loadSettings(SettingsObject *s) ui->autoCloseConsoleCheck->setChecked(s->get("AutoCloseConsole").toBool()); // Window Size - ui->compatModeCheckBox->setChecked(s->get("LaunchCompatMode").toBool()); ui->maximizedCheckBox->setChecked(s->get("LaunchMaximized").toBool()); ui->windowWidthSpinBox->setValue(s->get("MinecraftWinWidth").toInt()); ui->windowHeightSpinBox->setValue(s->get("MinecraftWinHeight").toInt()); |