Fix text color in attribute table for dark theme

This commit is contained in:
Nathan Woodrow 2015-11-05 21:28:38 +10:00
parent 6d705ad804
commit faeedfb5b8

View File

@ -106,14 +106,14 @@ QgsConditionalStyle::QgsConditionalStyle()
: mValid( false )
, mSymbol( 0 )
, mBackColor( QColor( 0, 0, 0, 0 ) )
, mTextColor( Qt::black )
, mTextColor( QColor( 0, 0, 0, 0 ) )
{}
QgsConditionalStyle::QgsConditionalStyle( const QString& rule )
: mValid( false )
, mSymbol( 0 )
, mBackColor( QColor( 0, 0, 0, 0 ) )
, mTextColor( Qt::black )
, mTextColor( QColor( 0, 0, 0, 0 ) )
{
setRule( rule );
}