Skip to content

Commit 254ceae

Browse files
committed
indentation fix
1 parent 7018cb0 commit 254ceae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/qgsconditionalstyle.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -293,13 +293,13 @@ bool QgsConditionalStyle::readXml( const QDomNode &node, const QgsReadWriteConte
293293
setRule( styleElm.attribute( QStringLiteral( "rule" ) ) );
294294
setName( styleElm.attribute( QStringLiteral( "name" ) ) );
295295
QColor bColor = QColor( styleElm.attribute( QStringLiteral( "background_color" ) ) );
296-
if( styleElm.hasAttribute( "background_color_alpha" ) )
296+
if ( styleElm.hasAttribute( "background_color_alpha" ) )
297297
{
298298
bColor.setAlpha( styleElm.attribute( QStringLiteral( "background_color_alpha" ) ).toInt() );
299299
}
300300
setBackgroundColor( bColor );
301301
QColor tColor = QColor( styleElm.attribute( QStringLiteral( "text_color" ) ) );
302-
if( styleElm.hasAttribute( "text_color_alpha" ) )
302+
if ( styleElm.hasAttribute( "text_color_alpha" ) )
303303
{
304304
tColor.setAlpha( styleElm.attribute( QStringLiteral( "text_color_alpha" ) ).toInt() );
305305
}

0 commit comments

Comments
 (0)