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:
Wolfram Rösler 2022-10-02 09:44:50 -04:00 committed by Jonathan White
parent 54f9b25b52
commit b1e7c34b82
8 changed files with 68 additions and 13 deletions

View file

@ -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");