Merge pull request #396 from leozamboni/develop

This commit is contained in:
Sefa Eyeoglu
2022-11-05 11:17:13 +01:00
committed by GitHub
3 changed files with 6 additions and 4 deletions

View File

@ -1560,12 +1560,13 @@ void MainWindow::setCatBackground(bool enabled)
QDateTime now = QDateTime::currentDateTime();
QDateTime birthday(QDate(now.date().year(), 11, 30), QTime(0, 0));
QDateTime xmas(QDate(now.date().year(), 12, 25), QTime(0, 0));
QDateTime halloween(QDate(now.date().year(), 10, 31), QTime(0, 0));
QString cat = APPLICATION->settings()->get("BackgroundCat").toString();
if(non_stupid_abs(now.daysTo(xmas)) <= 4) {
if (non_stupid_abs(now.daysTo(xmas)) <= 4) {
cat += "-xmas";
}
else if (non_stupid_abs(now.daysTo(birthday)) <= 12) {
} else if (cat == "kitteh" && non_stupid_abs(now.daysTo(halloween)) <= 4) {
cat += "-ween";
} else if (non_stupid_abs(now.daysTo(birthday)) <= 12) {
cat += "-bday";
}
view->setStyleSheet(QString(R"(