Skip to content

Commit

Permalink
render polygons with outline using drawPath (fixes #13343)
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Oct 29, 2015
1 parent ecaadef commit 08185c9
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/core/symbology-ng/qgssymbollayerv2.cpp
Expand Up @@ -736,7 +736,9 @@ void QgsFillSymbolLayerV2::_renderPolygon( QPainter* p, const QPolygonF& points,
return;
}

if ( rings == NULL )
// polygons outlines are sometimes rendered wrongly with drawPolygon, when
// clipped (see #13343), so use drawPath instead.
if ( !rings && p->pen().style() == Qt::NoPen )
{
// simple polygon without holes
p->drawPolygon( points );
Expand All @@ -748,11 +750,14 @@ void QgsFillSymbolLayerV2::_renderPolygon( QPainter* p, const QPolygonF& points,
QPolygonF outerRing = points;
path.addPolygon( outerRing );

QList<QPolygonF>::const_iterator it = rings->constBegin();
for ( ; it != rings->constEnd(); ++it )
if ( rings )
{
QPolygonF ring = *it;
path.addPolygon( ring );
QList<QPolygonF>::const_iterator it = rings->constBegin();
for ( ; it != rings->constEnd(); ++it )
{
QPolygonF ring = *it;
path.addPolygon( ring );
}
}

p->drawPath( path );
Expand Down

0 comments on commit 08185c9

Please sign in to comment.