diff options
author | Santiago Cézar <santiagocezar2013@gmail.com> | 2022-11-01 19:31:37 -0300 |
---|---|---|
committer | Santiago Cézar <santiagocezar2013@gmail.com> | 2022-11-01 19:31:37 -0300 |
commit | 668342b4708fca830a0650a6902805de3ff1380a (patch) | |
tree | 6f1854b7b66e6f54d2bf131752213e23dffccb3d /launcher/ui/pages/global/LauncherPage.cpp | |
parent | 0a0ce74105b1c01bb312175a823e715d6abb310c (diff) | |
download | PrismLauncher-668342b4708fca830a0650a6902805de3ff1380a.tar.gz PrismLauncher-668342b4708fca830a0650a6902805de3ff1380a.tar.bz2 PrismLauncher-668342b4708fca830a0650a6902805de3ff1380a.zip |
add rory flat too (and holiday variants)
Signed-off-by: Santiago Cézar <santiagocezar2013@gmail.com>
Co-authored-by: Ashtaka <66513643+AshtakaOOf@users.noreply.github.com>
Diffstat (limited to 'launcher/ui/pages/global/LauncherPage.cpp')
-rw-r--r-- | launcher/ui/pages/global/LauncherPage.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/launcher/ui/pages/global/LauncherPage.cpp b/launcher/ui/pages/global/LauncherPage.cpp index 44421d3b..822c69b0 100644 --- a/launcher/ui/pages/global/LauncherPage.cpp +++ b/launcher/ui/pages/global/LauncherPage.cpp @@ -341,6 +341,9 @@ void LauncherPage::applySettings() case 1: // rory the cat s->set("BackgroundCat", "rory"); break; + case 2: // rory the cat flat edition + s->set("BackgroundCat", "rory-flat"); + break; } s->set("MenuBarInsteadOfToolBar", ui->preferMenuBarCheckBox->isChecked()); @@ -439,6 +442,8 @@ void LauncherPage::loadSettings() ui->themeBackgroundCat->setCurrentIndex(0); } else if (cat == "rory") { ui->themeBackgroundCat->setCurrentIndex(1); + } else if (cat == "rory-flat") { + ui->themeBackgroundCat->setCurrentIndex(2); } { |