Fix Search and KeeShare banner style

This commit is contained in:
Jonathan White 2020-08-01 11:13:28 -04:00
parent a79afd6580
commit 7f2efd3193
5 changed files with 31 additions and 8 deletions

View file

@ -169,6 +169,11 @@ void Application::applyTheme()
#ifndef Q_OS_WIN
m_darkTheme = osUtils->isDarkMode();
#endif
QFile stylesheetFile(":/styles/base/classicstyle.qss");
if (stylesheetFile.open(QIODevice::ReadOnly | QIODevice::Text)) {
setStyleSheet(stylesheetFile.readAll());
stylesheetFile.close();
}
}
}