Skip to content

Commit 3079c4b

Browse files
author
mhugent
committedMay 31, 2008
Fix for label size in printing output (bug #1097)
git-svn-id: http://svn.osgeo.org/qgis/trunk@8557 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent a1719bd commit 3079c4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/qgsvectorlayer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ void QgsVectorLayer::drawLabels(QgsRenderContext& renderContext)
284284
{
285285
return;
286286
}
287-
drawLabels(thePainter, renderContext.extent(), &(renderContext.mapToPixel()), renderContext.coordTransform(), renderContext.scaleFactor());
287+
drawLabels(thePainter, renderContext.extent(), &(renderContext.mapToPixel()), renderContext.coordTransform(), 1.0 / renderContext.rasterScaleFactor());
288288
}
289289

290290
// NOTE this is a temporary method added by Tim to prevent label clipping

0 commit comments

Comments
 (0)
Please sign in to comment.