Skip to content

Commit 2e89e25

Browse files
committed
Fix width of line decoration (ticket #7410)
1 parent be94703 commit 2e89e25

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
@@ -1087,7 +1087,7 @@ void QgsLineDecorationSymbolLayerV2::startRender( QgsSymbolV2RenderContext& cont
10871087
penColor.setAlphaF( mColor.alphaF() * context.alpha() );
10881088

10891089
double width = mWidth * QgsSymbolLayerV2Utils::lineWidthScaleFactor( context.renderContext(), mWidthUnit );
1090-
mPen.setWidth( context.outputLineWidth( width ) );
1090+
mPen.setWidth( width );
10911091
mPen.setColor( penColor );
10921092
QColor selColor = context.renderContext().selectionColor();
10931093
if ( ! selectionIsOpaque )

0 commit comments

Comments
 (0)