Skip to content

Commit c06bcc6

Browse files
committedDec 2, 2018
Remove no longer required workaround
(cherry picked from commit 8983f36)
1 parent 34a821e commit c06bcc6

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed
 

‎src/core/symbology/qgssymbollayerutils.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -847,9 +847,6 @@ QList<QPolygonF> offsetLine( QPolygonF polyline, double dist, QgsWkbTypes::Geome
847847
if ( QgsWkbTypes::flatType( tempGeometry.wkbType() ) == QgsWkbTypes::LineString )
848848
{
849849
QgsPolylineXY line = tempGeometry.asPolyline();
850-
// Reverse the line if offset was negative, see
851-
// https://issues.qgis.org/issues/13811
852-
if ( dist < 0 ) std::reverse( line.begin(), line.end() );
853850
resultLine.append( makeOffsetGeometry( line ) );
854851
return resultLine;
855852
}

0 commit comments

Comments
 (0)
Please sign in to comment.