Skip to content

Commit

Permalink
Fix circle position in dxf export
Browse files Browse the repository at this point in the history
  • Loading branch information
mhugent committed Dec 19, 2013
1 parent 35beddf commit 055f8a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/symbology-ng/qgsmarkersymbollayerv2.cpp
Expand Up @@ -824,8 +824,8 @@ bool QgsSimpleMarkerSymbolLayerV2::writeDxf( QgsDxfExport& e, double mmMapUnitSc
e.writeGroup( 8, layerName );

e.writeGroup( 62, colorIndex );
e.writeGroup( 10, halfSize + shift.x() );
e.writeGroup( 20, halfSize + shift.y() );
e.writeGroup( 10, shift.x() );
e.writeGroup( 20, shift.y() );
e.writeGroup( 30, 0.0 );
e.writeGroup( 40, halfSize );
}
Expand Down

0 comments on commit 055f8a8

Please sign in to comment.