Skip to content

Commit 055f8a8

Browse files
committed
Fix circle position in dxf export
1 parent 35beddf commit 055f8a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/symbology-ng/qgsmarkersymbollayerv2.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -824,8 +824,8 @@ bool QgsSimpleMarkerSymbolLayerV2::writeDxf( QgsDxfExport& e, double mmMapUnitSc
824824
e.writeGroup( 8, layerName );
825825

826826
e.writeGroup( 62, colorIndex );
827-
e.writeGroup( 10, halfSize + shift.x() );
828-
e.writeGroup( 20, halfSize + shift.y() );
827+
e.writeGroup( 10, shift.x() );
828+
e.writeGroup( 20, shift.y() );
829829
e.writeGroup( 30, 0.0 );
830830
e.writeGroup( 40, halfSize );
831831
}

0 commit comments

Comments
 (0)