Skip to content
Permalink
Browse files
Dxf export: more precision for doubles
  • Loading branch information
mhugent committed Jan 7, 2014
1 parent 5c38775 commit 0b10498
Showing 1 changed file with 1 addition and 1 deletion.
@@ -354,7 +354,7 @@ void QgsDxfExport::writeInt( int i )

void QgsDxfExport::writeDouble( double d )
{
mTextStream << QString( "%1\n" ).arg( d );
mTextStream << qgsDoubleToString( d ) << "\n";
}

void QgsDxfExport::writeString( const QString& s )

0 comments on commit 0b10498

Please sign in to comment.