Skip to content

Commit

Permalink
Fix width of line decoration for selected features (ticket #7410)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandro Santilli committed May 31, 2013
1 parent 792ac5a commit 3f3ce48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/symbology-ng/qgslinesymbollayerv2.cpp
Expand Up @@ -1092,7 +1092,7 @@ void QgsLineDecorationSymbolLayerV2::startRender( QgsSymbolV2RenderContext& cont
QColor selColor = context.renderContext().selectionColor();
if ( ! selectionIsOpaque )
selColor.setAlphaF( context.alpha() );
mSelPen.setWidth( context.outputLineWidth( width ) );
mSelPen.setWidth( width ); //context.outputLineWidth( width ) );
mSelPen.setColor( selColor );
}

Expand Down

0 comments on commit 3f3ce48

Please sign in to comment.