Skip to content

Commit

Permalink
Fix width of simple line style
Browse files Browse the repository at this point in the history
  • Loading branch information
mhugent committed Dec 17, 2012
1 parent ce0b0b9 commit 9120e02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/symbology-ng/qgslinesymbollayerv2.cpp
Expand Up @@ -204,7 +204,7 @@ QString QgsSimpleLineSymbolLayerV2::ogrFeatureStyle() const
symbolStyle.append( "c:" );
symbolStyle.append( mPen.color().name() );
symbolStyle.append( ",w:" );
symbolStyle.append( QString::number( mPen.width() ) );
symbolStyle.append( QString::number( mWidth ) );
symbolStyle.append( "mm" );
symbolStyle.append( ")" );

Expand Down

0 comments on commit 9120e02

Please sign in to comment.