Skip to content

Commit

Permalink
Fudge size
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Aug 17, 2019
1 parent 39b12a6 commit fb4b483
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/layout/qgslayoutgeopdfexporter.cpp
Expand Up @@ -256,10 +256,10 @@ QString QgsLayoutGeoPdfExporter::createCompositionXml( const QString &sourcePdf
dpi.appendChild( doc.createTextNode( QStringLiteral( "300" ) ) );
page.appendChild( dpi );
QDomElement width = doc.createElement( QStringLiteral( "Width" ) );
width.appendChild( doc.createTextNode( QStringLiteral( "297" ) ) );
width.appendChild( doc.createTextNode( QStringLiteral( "842" ) ) );
page.appendChild( width );
QDomElement height = doc.createElement( QStringLiteral( "Height" ) );
height.appendChild( doc.createTextNode( QStringLiteral( "210" ) ) );
height.appendChild( doc.createTextNode( QStringLiteral( "595" ) ) );
page.appendChild( height );
// georeferencing - TODO

Expand Down

0 comments on commit fb4b483

Please sign in to comment.