Skip to content

Commit

Permalink
Fix diagram scaling for print
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Hugentobler authored and m-kuhn committed Aug 31, 2012
1 parent 573d57f commit 8f891c5
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/core/qgsdiagramrendererv2.cpp
Expand Up @@ -283,13 +283,7 @@ void QgsDiagramRendererV2::convertSizeToMapUnits( QSizeF& size, const QgsRenderC
return;
}

int dpi = dpiPaintDevice( context.constPainter() );
if ( dpi < 0 )
{
return;
}

double pixelToMap = dpi / 25.4 * context.mapToPixel().mapUnitsPerPixel();
double pixelToMap = context.scaleFactor() * context.mapToPixel().mapUnitsPerPixel();
size.rwidth() *= pixelToMap;
size.rheight() *= pixelToMap;
}
Expand Down

0 comments on commit 8f891c5

Please sign in to comment.