Skip to content

Commit

Permalink
Fix invalid debugging noise
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Oct 3, 2016
1 parent dc48195 commit 82eeeac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/symbology-ng/qgscategorizedsymbolrenderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ QgsCategorizedSymbolRenderer::QgsCategorizedSymbolRenderer( const QString& attrN
//trigger a detachment and copy of mCategories BUT that same method CAN be used to modify a symbol in place
Q_FOREACH ( const QgsRendererCategory& cat, categories )
{
if ( cat.symbol() )
if ( !cat.symbol() )
{
QgsDebugMsg( "invalid symbol in a category! ignoring..." );
}
Expand Down

0 comments on commit 82eeeac

Please sign in to comment.