Skip to content

Commit 3f3ce48

Browse files
author
Sandro Santilli
committed
Fix width of line decoration for selected features (ticket #7410)
1 parent 792ac5a commit 3f3ce48

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
@@ -1092,7 +1092,7 @@ void QgsLineDecorationSymbolLayerV2::startRender( QgsSymbolV2RenderContext& cont
10921092
QColor selColor = context.renderContext().selectionColor();
10931093
if ( ! selectionIsOpaque )
10941094
selColor.setAlphaF( context.alpha() );
1095-
mSelPen.setWidth( context.outputLineWidth( width ) );
1095+
mSelPen.setWidth( width ); //context.outputLineWidth( width ) );
10961096
mSelPen.setColor( selColor );
10971097
}
10981098

0 commit comments

Comments
 (0)