mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Fix text color in attribute table for dark theme
This commit is contained in:
parent
6d705ad804
commit
faeedfb5b8
@ -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 );
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user