Skip to content

Commit

Permalink
Fix symbole size
Browse files Browse the repository at this point in the history
  • Loading branch information
Stéphane Brunner committed Oct 19, 2013
1 parent a0eb3c6 commit 10f699e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/symbology-ng/qgssymbollayerv2.cpp
Expand Up @@ -318,7 +318,7 @@ void QgsLineSymbolLayerV2::renderPolygonOutline( const QPolygonF& points, QList<

void QgsFillSymbolLayerV2::drawPreviewIcon( QgsSymbolV2RenderContext& context, QSize size )
{
QPolygonF poly = QRectF( QPointF( 0, 0 ), QPointF( size.width() - 1, size.height() - 1 ) );
QPolygonF poly = QRectF( QPointF( 0, 0 ), QPointF( size.width(), size.height() ) );
startRender( context );
renderPolygon( poly, NULL, context );
stopRender( context );
Expand Down

0 comments on commit 10f699e

Please sign in to comment.