Skip to content

Commit e517855

Browse files
author
wonder
committed
Draw a polyline only if it is empty? (Catch 22 strikes back)
git-svn-id: http://svn.osgeo.org/qgis/trunk@15602 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent f7d7706 commit e517855

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/symbology-ng/qgslinesymbollayerv2.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ void QgsMarkerLineSymbolLayerV2::renderPolyline( const QPolygonF& points, QgsSym
314314

315315
void QgsMarkerLineSymbolLayerV2::renderPolylineInterval( const QPolygonF& points, QgsSymbolV2RenderContext& context )
316316
{
317-
if ( ! points.isEmpty() )
317+
if ( points.isEmpty() )
318318
return;
319319

320320
QPointF lastPt = points[0];

0 commit comments

Comments
 (0)