Skip to content

Commit fab9465

Browse files
author
wonder
committedApr 23, 2010
Fixed rendering of selection for multipolygons (symbology-ng)
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13350 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/qgsrendererv2.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ void QgsFeatureRendererV2::renderFeature( QgsFeature& feature, QgsRenderContext&
282282
for ( unsigned int i = 0; i < num; ++i )
283283
{
284284
ptr = _getPolygon( pts, holes, context, ptr );
285-
(( QgsFillSymbolV2* )symbol )->renderPolygon( pts, ( holes.count() ? &holes : NULL ), context );
285+
(( QgsFillSymbolV2* )symbol )->renderPolygon( pts, ( holes.count() ? &holes : NULL ), context, layer, selected );
286286

287287
if ( drawVertexMarker )
288288
renderVertexMarkerPolygon( pts, ( holes.count() ? &holes : NULL ), context );

0 commit comments

Comments
 (0)
Please sign in to comment.