Skip to content

Commit

Permalink
Correct arrow size for print (#3144)
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14428 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
wonder committed Oct 22, 2010
1 parent 6829b5f commit 97f738c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/symbology-ng/qgslinesymbollayerv2.cpp
Expand Up @@ -458,7 +458,7 @@ void QgsLineDecorationSymbolLayerV2::renderPolyline( const QPolygonF& points, Qg
QPointF p2 = points.at( cnt - 1 );
double angle = _calculateAngle( p1.x(), p1.y(), p2.x(), p2.y() );

double size = 6;
double size = context.outputLineWidth( 2 );
double angle1 = angle + M_PI / 6;
double angle2 = angle - M_PI / 6;

Expand Down

0 comments on commit 97f738c

Please sign in to comment.