Rename theme to cream harder

This commit is contained in:
wheremyfoodat 2024-04-02 01:06:44 +03:00 committed by GitHub
parent a3099ff6e2
commit 6fbb1d0747
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,7 +10,7 @@ ConfigWindow::ConfigWindow(QWidget* parent) : QDialog(parent) {
themeSelect->addItem(tr("Light"));
themeSelect->addItem(tr("Dark"));
themeSelect->addItem(tr("Greetings Cat"));
themeSelect->addItem(tr("Ice Cream and Jelly"));
themeSelect->addItem(tr("Cream"));
themeSelect->setCurrentIndex(static_cast<int>(currentTheme));
themeSelect->setGeometry(40, 40, 100, 50);
@ -88,7 +88,7 @@ void ConfigWindow::setTheme(Theme theme) {
break;
}
case Theme::IceCreamAndJelly: {
case Theme::Cream: {
QApplication::setStyle(QStyleFactory::create("Fusion"));
QPalette p;