diff options
author | Petr Mrázek <peterix@gmail.com> | 2014-05-25 03:22:17 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2014-05-25 04:01:38 +0200 |
commit | d2b2d55aa9a4031d1e179534796cbe07bc57080f (patch) | |
tree | c239fa5b79a5fe1459df9f642cf6317cbcfe56b2 /gui/dialogs/SettingsDialog.cpp | |
parent | eb9661370b3697993efd180b9959b2aa448ecc6e (diff) | |
download | PrismLauncher-d2b2d55aa9a4031d1e179534796cbe07bc57080f.tar.gz PrismLauncher-d2b2d55aa9a4031d1e179534796cbe07bc57080f.tar.bz2 PrismLauncher-d2b2d55aa9a4031d1e179534796cbe07bc57080f.zip |
New flat icon themes from pexner
Squash and rework of commits from robotbrain
Diffstat (limited to 'gui/dialogs/SettingsDialog.cpp')
-rw-r--r-- | gui/dialogs/SettingsDialog.cpp | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/gui/dialogs/SettingsDialog.cpp b/gui/dialogs/SettingsDialog.cpp index 2dd19077..4229ea91 100644 --- a/gui/dialogs/SettingsDialog.cpp +++ b/gui/dialogs/SettingsDialog.cpp @@ -316,7 +316,20 @@ void SettingsDialog::applySettings(SettingsObject *s) // Updates s->set("AutoUpdate", ui->autoUpdateCheckBox->isChecked()); s->set("UpdateChannel", m_currentUpdateChannel); - + //FIXME: make generic + switch (ui->themeComboBox->currentIndex()) + { + case 1: + s->set("IconTheme", "pe_dark"); + break; + case 2: + s->set("IconTheme", "pe_light"); + break; + case 0: + default: + s->set("IconTheme", "multimc"); + break; + } // FTB s->set("TrackFTBInstances", ui->trackFtbBox->isChecked()); s->set("FTBLauncherRoot", ui->ftbLauncherBox->text()); @@ -419,7 +432,20 @@ void SettingsDialog::loadSettings(SettingsObject *s) // Updates ui->autoUpdateCheckBox->setChecked(s->get("AutoUpdate").toBool()); m_currentUpdateChannel = s->get("UpdateChannel").toString(); - + //FIXME: make generic + auto theme = s->get("IconTheme").toString(); + if (theme == "pe_dark") + { + ui->themeComboBox->setCurrentIndex(1); + } + else if (theme == "pe_light") + { + ui->themeComboBox->setCurrentIndex(2); + } + else + { + ui->themeComboBox->setCurrentIndex(0); + } // FTB ui->trackFtbBox->setChecked(s->get("TrackFTBInstances").toBool()); ui->ftbLauncherBox->setText(s->get("FTBLauncherRoot").toString()); |