GH-1711 fix inactive element shading in Dark and Bright themes

This commit is contained in:
Petr Mrázek
2016-11-05 15:51:51 +01:00
parent 495e752f8a
commit 13b575f7a9
7 changed files with 54 additions and 20 deletions

View File

@ -0,0 +1,14 @@
#pragma once
#include "ITheme.h"
class FusionTheme: public ITheme
{
public:
virtual ~FusionTheme() {}
QString qtTheme() override;
protected:
QPalette fadeInactive(QPalette in, qreal bias, QColor color);
};