diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-08-27 05:39:49 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-08-27 05:39:49 +0200 |
commit | 5573ed52e8b68a54330cfee21b853da53d079078 (patch) | |
tree | 10eebd4ac4804550441ccc2a591ed00640adb75f /gui/settingsdialog.cpp | |
parent | e6999b3b62c5b765eff1736477a052f1cfeffd19 (diff) | |
download | MultiMC-5573ed52e8b68a54330cfee21b853da53d079078.tar MultiMC-5573ed52e8b68a54330cfee21b853da53d079078.tar.gz MultiMC-5573ed52e8b68a54330cfee21b853da53d079078.tar.lz MultiMC-5573ed52e8b68a54330cfee21b853da53d079078.tar.xz MultiMC-5573ed52e8b68a54330cfee21b853da53d079078.zip |
Add/remove/drag&drop for the icon picker.
Diffstat (limited to 'gui/settingsdialog.cpp')
-rw-r--r-- | gui/settingsdialog.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gui/settingsdialog.cpp b/gui/settingsdialog.cpp index 909706b6..52093039 100644 --- a/gui/settingsdialog.cpp +++ b/gui/settingsdialog.cpp @@ -43,12 +43,8 @@ void SettingsDialog::showEvent ( QShowEvent* ev ) void SettingsDialog::updateCheckboxStuff() { - ui->windowWidthSpinBox->setEnabled(!(ui->compatModeCheckBox->isChecked() || - ui->maximizedCheckBox->isChecked())); - ui->windowHeightSpinBox->setEnabled(!(ui->compatModeCheckBox->isChecked() || - ui->maximizedCheckBox->isChecked())); - - ui->maximizedCheckBox->setEnabled(!ui->compatModeCheckBox->isChecked()); + ui->windowWidthSpinBox->setEnabled(!ui->maximizedCheckBox->isChecked()); + ui->windowHeightSpinBox->setEnabled(! ui->maximizedCheckBox->isChecked()); } void SettingsDialog::on_instDirBrowseBtn_clicked() |