Skip to content

Commit 62b8030

Browse files
author
timlinux
committedNov 27, 2009
Fixed bug in deserialisation of nofill brushes
git-svn-id: http://svn.osgeo.org/qgis/trunk@12268 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent e09330b commit 62b8030

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎src/core/symbology-ng/qgssymbollayerv2utils.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ Qt::BrushStyle QgsSymbolLayerV2Utils::decodeBrushStyle( QString str )
130130
if ( str == "dense5" ) return Qt::Dense5Pattern;
131131
if ( str == "dense6" ) return Qt::Dense6Pattern;
132132
if ( str == "dense7" ) return Qt::Dense7Pattern;
133+
if ( str == "no" ) return Qt::NoBrush;
133134
return Qt::SolidPattern;
134135
}
135136

0 commit comments

Comments
 (0)
Please sign in to comment.