mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-26 16:25:23 -04:00
Fix Search and KeeShare banner style
This commit is contained in:
parent
a79afd6580
commit
7f2efd3193
5 changed files with 31 additions and 8 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue