mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-27 00:33:48 -05:00
Merge pull request #9036 from mhugo/fix_19909
Fix vertex marker display for multipolygon (fixes #19909)
This commit is contained in:
commit
c3819e88dc
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -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 )
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user