Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix text color in attribute table for dark theme
  • Loading branch information
NathanW2 committed Nov 5, 2015
1 parent 6d705ad commit faeedfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/qgsconditionalstyle.cpp
Expand Up @@ -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 );
}
Expand Down

0 comments on commit faeedfb

Please sign in to comment.