Update SetupWizard.cpp

This commit is contained in:
DavidXanatos 2022-08-09 09:03:01 +02:00
parent d4837bbaf9
commit 484d771da2
1 changed files with 6 additions and 0 deletions

View File

@ -157,6 +157,12 @@ CIntroPage::CIntroPage(QWidget *parent)
}
setLayout(layout);
if (theGUI->m_DarkTheme) {
QPalette palette = this->palette();
palette.setColor(QPalette::Base, QColor(53, 53, 53));
this->setPalette(palette);
}
}
int CIntroPage::nextId() const