mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
Add option to display passwords in color in preview panel
Closes #4099 * Fixed bug in Application that did not set the dark theme flag when the theme was changed from dark to light.
This commit is contained in:
parent
54f9b25b52
commit
b1e7c34b82
8 changed files with 68 additions and 13 deletions
|
@ -183,6 +183,7 @@ void Application::applyTheme()
|
|||
auto* s = new LightStyle;
|
||||
setPalette(s->standardPalette());
|
||||
setStyle(s);
|
||||
m_darkTheme = false;
|
||||
} else if (appTheme == "dark") {
|
||||
auto* s = new DarkStyle;
|
||||
setPalette(s->standardPalette());
|
||||
|
@ -191,7 +192,9 @@ void Application::applyTheme()
|
|||
} else {
|
||||
// Classic mode, don't check for dark theme on Windows
|
||||
// because Qt 5.x does not support it
|
||||
#ifndef Q_OS_WIN
|
||||
#if defined(Q_OS_WIN)
|
||||
m_darkTheme = false;
|
||||
#else
|
||||
m_darkTheme = osUtils->isDarkMode();
|
||||
#endif
|
||||
QFile stylesheetFile(":/styles/base/classicstyle.qss");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue