Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #9036 from mhugo/fix_19909
Fix vertex marker display for multipolygon (fixes #19909)
  • Loading branch information
Hugo Mercier committed Jan 31, 2019
2 parents 679b60e + 389149c commit c3819e8
Showing 1 changed file with 2 additions and 16 deletions.
18 changes: 2 additions & 16 deletions src/core/symbology/qgssymbol.cpp
Expand Up @@ -936,14 +936,7 @@ void QgsSymbol::renderFeature( const QgsFeature &feature, QgsRenderContext &cont

if ( drawVertexMarker && !usingSegmentizedGeometry )
{
if ( i == 0 )
{
markers = pts;
}
else
{
markers << pts;
}
markers << pts;
}
}
}
Expand Down Expand Up @@ -998,14 +991,7 @@ void QgsSymbol::renderFeature( const QgsFeature &feature, QgsRenderContext &cont

if ( drawVertexMarker && !usingSegmentizedGeometry )
{
if ( i == 0 )
{
markers = pts;
}
else
{
markers << pts;
}
markers << pts;

Q_FOREACH ( const QPolygonF &hole, holes )
{
Expand Down

0 comments on commit c3819e8

Please sign in to comment.