mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Minor theme fixes
* Support mouse hover color change for QPushButtons. * Fix #5040 - don't enforce standard palette when in classic theme mode
This commit is contained in:
parent
004f5d407f
commit
a88fe61a7b
4 changed files with 31 additions and 12 deletions
|
@ -144,18 +144,19 @@ Application::~Application()
|
|||
|
||||
void Application::applyTheme()
|
||||
{
|
||||
QString appTheme = config()->get(Config::GUI_ApplicationTheme).toString();
|
||||
auto appTheme = config()->get(Config::GUI_ApplicationTheme).toString();
|
||||
if (appTheme == "auto") {
|
||||
if (osUtils->isDarkMode()) {
|
||||
setStyle(new DarkStyle);
|
||||
m_darkTheme = true;
|
||||
} else {
|
||||
setStyle(new LightStyle);
|
||||
}
|
||||
} else if (appTheme == "light") {
|
||||
appTheme = osUtils->isDarkMode() ? "dark" : "light";
|
||||
}
|
||||
|
||||
if (appTheme == "light") {
|
||||
setStyle(new LightStyle);
|
||||
// Workaround Qt 5.15+ bug
|
||||
setPalette(style()->standardPalette());
|
||||
} else if (appTheme == "dark") {
|
||||
setStyle(new DarkStyle);
|
||||
// Workaround Qt 5.15+ bug
|
||||
setPalette(style()->standardPalette());
|
||||
m_darkTheme = true;
|
||||
} else {
|
||||
// Classic mode, don't check for dark theme on Windows
|
||||
|
@ -164,8 +165,6 @@ void Application::applyTheme()
|
|||
m_darkTheme = osUtils->isDarkMode();
|
||||
#endif
|
||||
}
|
||||
|
||||
setPalette(style()->standardPalette());
|
||||
}
|
||||
|
||||
bool Application::event(QEvent* event)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue