Skip to content

Commit 97f738c

Browse files
author
wonder
committedOct 22, 2010
Correct arrow size for print (#3144)
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14428 c8812cc2-4d05-0410-92ff-de0c093fc19c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ void QgsLineDecorationSymbolLayerV2::renderPolyline( const QPolygonF& points, Qg
458458
QPointF p2 = points.at( cnt - 1 );
459459
double angle = _calculateAngle( p1.x(), p1.y(), p2.x(), p2.y() );
460460

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

0 commit comments

Comments
 (0)
Please sign in to comment.