mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
[composer] Fix selection drawn in maps if renderer has symbol level order
This commit is contained in:
parent
b40742867e
commit
d7181105b5
@ -474,7 +474,7 @@ void QgsVectorLayerRenderer::drawRendererLevels( QgsFeatureIterator &fit )
|
||||
return;
|
||||
}
|
||||
|
||||
bool sel = mSelectedFeatureIds.contains( fit->id() );
|
||||
bool sel = mContext.showSelection() && mSelectedFeatureIds.contains( fit->id() );
|
||||
// maybe vertex markers should be drawn only during the last pass...
|
||||
bool drawMarker = ( mDrawVertexMarkers && mContext.drawEditingInformation() && ( !mVertexMarkerOnlyForSelection || sel ) );
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user