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 | |
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')
-rw-r--r-- | launcher/resources/backgrounds/generic.jpg | bin | 335269 -> 0 bytes | |||
-rw-r--r-- | launcher/resources/backgrounds/rory-bday.png | bin | 89472 -> 83235 bytes | |||
-rw-r--r-- | launcher/resources/backgrounds/rory-flat-bday.png | bin | 0 -> 57713 bytes | |||
-rw-r--r-- | launcher/resources/backgrounds/rory-flat-xmas.png | bin | 0 -> 59495 bytes | |||
-rw-r--r-- | launcher/resources/backgrounds/rory-flat.png | bin | 0 -> 52337 bytes | |||
-rw-r--r-- | launcher/resources/backgrounds/rory-xmas.png | bin | 90158 -> 85543 bytes | |||
-rw-r--r-- | launcher/resources/backgrounds/rory.png | bin | 90624 -> 76448 bytes | |||
-rw-r--r-- | launcher/ui/pages/global/LauncherPage.cpp | 5 | ||||
-rw-r--r-- | launcher/ui/pages/global/LauncherPage.ui | 5 |
9 files changed, 10 insertions, 0 deletions
diff --git a/launcher/resources/backgrounds/generic.jpg b/launcher/resources/backgrounds/generic.jpg Binary files differdeleted file mode 100644 index c4832b0a..00000000 --- a/launcher/resources/backgrounds/generic.jpg +++ /dev/null diff --git a/launcher/resources/backgrounds/rory-bday.png b/launcher/resources/backgrounds/rory-bday.png Binary files differindex c1f576f0..66b88094 100644 --- a/launcher/resources/backgrounds/rory-bday.png +++ b/launcher/resources/backgrounds/rory-bday.png diff --git a/launcher/resources/backgrounds/rory-flat-bday.png b/launcher/resources/backgrounds/rory-flat-bday.png Binary files differnew file mode 100644 index 00000000..8a6e366d --- /dev/null +++ b/launcher/resources/backgrounds/rory-flat-bday.png diff --git a/launcher/resources/backgrounds/rory-flat-xmas.png b/launcher/resources/backgrounds/rory-flat-xmas.png Binary files differnew file mode 100644 index 00000000..96c3ae38 --- /dev/null +++ b/launcher/resources/backgrounds/rory-flat-xmas.png diff --git a/launcher/resources/backgrounds/rory-flat.png b/launcher/resources/backgrounds/rory-flat.png Binary files differnew file mode 100644 index 00000000..ccec0662 --- /dev/null +++ b/launcher/resources/backgrounds/rory-flat.png diff --git a/launcher/resources/backgrounds/rory-xmas.png b/launcher/resources/backgrounds/rory-xmas.png Binary files differindex 6134c71a..107feb78 100644 --- a/launcher/resources/backgrounds/rory-xmas.png +++ b/launcher/resources/backgrounds/rory-xmas.png diff --git a/launcher/resources/backgrounds/rory.png b/launcher/resources/backgrounds/rory.png Binary files differindex 9dc69354..577f4dce 100644 --- a/launcher/resources/backgrounds/rory.png +++ b/launcher/resources/backgrounds/rory.png 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); } { diff --git a/launcher/ui/pages/global/LauncherPage.ui b/launcher/ui/pages/global/LauncherPage.ui index 3a4e7da4..0b36652c 100644 --- a/launcher/ui/pages/global/LauncherPage.ui +++ b/launcher/ui/pages/global/LauncherPage.ui @@ -371,6 +371,11 @@ <string>Rory ID 11 (drawn by Ashtaka)</string> </property> </item> + <item> + <property name="text"> + <string>Rory ID 11 (flat edition, drawn by Ashtaka)</string> + </property> + </item> </widget> </item> </layout> |