Skip to content

Commit

Permalink
Fixed bug in deserialisation of nofill brushes
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@12268 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Nov 27, 2009
1 parent e09330b commit 62b8030
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/core/symbology-ng/qgssymbollayerv2utils.cpp
Expand Up @@ -130,6 +130,7 @@ Qt::BrushStyle QgsSymbolLayerV2Utils::decodeBrushStyle( QString str )
if ( str == "dense5" ) return Qt::Dense5Pattern;
if ( str == "dense6" ) return Qt::Dense6Pattern;
if ( str == "dense7" ) return Qt::Dense7Pattern;
if ( str == "no" ) return Qt::NoBrush;
return Qt::SolidPattern;
}

Expand Down

0 comments on commit 62b8030

Please sign in to comment.