diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-11-06 00:47:33 +0100 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-11-06 00:47:33 +0100 |
commit | 4708ce4226e7b23046b8a099dd033192e68f8fd5 (patch) | |
tree | 98e78425c58a9a9f3dc72ddab847459e26432cad | |
parent | a0580946dcac871b74e670e354921842bcf07aa6 (diff) | |
download | PrismLauncher-4708ce4226e7b23046b8a099dd033192e68f8fd5.tar.gz PrismLauncher-4708ce4226e7b23046b8a099dd033192e68f8fd5.tar.bz2 PrismLauncher-4708ce4226e7b23046b8a099dd033192e68f8fd5.zip |
refactor: rename halloween cats to -spooky
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
-rw-r--r-- | launcher/resources/backgrounds/backgrounds.qrc | 2 | ||||
-rw-r--r-- | launcher/resources/backgrounds/kitteh-spooky.png (renamed from launcher/resources/backgrounds/kitteh-ween.png) | bin | 94677 -> 94677 bytes | |||
-rw-r--r-- | launcher/ui/MainWindow.cpp | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/launcher/resources/backgrounds/backgrounds.qrc b/launcher/resources/backgrounds/backgrounds.qrc index edfa44c0..e55faf15 100644 --- a/launcher/resources/backgrounds/backgrounds.qrc +++ b/launcher/resources/backgrounds/backgrounds.qrc @@ -4,7 +4,7 @@ <file alias="kitteh">kitteh.png</file> <file alias="kitteh-xmas">kitteh-xmas.png</file> <file alias="kitteh-bday">kitteh-bday.png</file> - <file alias="kitteh-ween">kitteh-ween.png</file> + <file alias="kitteh-spooky">kitteh-spooky.png</file> <file alias="rory">rory.png</file> <file alias="rory-xmas">rory-xmas.png</file> <file alias="rory-bday">rory-bday.png</file> diff --git a/launcher/resources/backgrounds/kitteh-ween.png b/launcher/resources/backgrounds/kitteh-spooky.png Binary files differindex deb0bebb..deb0bebb 100644 --- a/launcher/resources/backgrounds/kitteh-ween.png +++ b/launcher/resources/backgrounds/kitteh-spooky.png diff --git a/launcher/ui/MainWindow.cpp b/launcher/ui/MainWindow.cpp index 8cf2bde7..f6b9888f 100644 --- a/launcher/ui/MainWindow.cpp +++ b/launcher/ui/MainWindow.cpp @@ -1565,7 +1565,7 @@ void MainWindow::setCatBackground(bool enabled) if (non_stupid_abs(now.daysTo(xmas)) <= 4) { cat += "-xmas"; } else if (non_stupid_abs(now.daysTo(halloween)) <= 4) { - cat += "-ween"; + cat += "-spooky"; } else if (non_stupid_abs(now.daysTo(birthday)) <= 12) { cat += "-bday"; } |