NOISSUE add hack for system themes. Maybe it works?

This commit is contained in:
Petr Mrázek
2017-01-15 22:56:03 +01:00
parent 71584fb8cc
commit 944ff256b2
10 changed files with 71 additions and 3 deletions

View File

@ -10,6 +10,11 @@ QString BrightTheme::name()
return QObject::tr("Bright");
}
bool BrightTheme::hasColorScheme()
{
return true;
}
QPalette BrightTheme::colorScheme()
{
QPalette brightPalette;
@ -39,6 +44,11 @@ QColor BrightTheme::fadeColor()
return QColor(239,240,241);
}
bool BrightTheme::hasStyleSheet()
{
return false;
}
QString BrightTheme::appStyleSheet()
{
return QString();