Skip to content

Commit

Permalink
Default to cartographic label placement for point layers
Browse files Browse the repository at this point in the history
It's much nicer than "around point"
  • Loading branch information
nyalldawson committed Aug 9, 2016
1 parent ed69bf2 commit 66d4af3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/core/qgspallabeling.cpp
Expand Up @@ -785,6 +785,9 @@ void QgsPalLayerSettings::readFromLayer( QgsVectorLayer* layer )
{
if ( layer->customProperty( "labeling" ).toString() != QLatin1String( "pal" ) )
{
if ( layer->geometryType() == QgsWkbTypes::PointGeometry )
placement = OrderedPositionsAroundPoint;

// for polygons the "over point" (over centroid) placement is better than the default
// "around point" (around centroid) which is more suitable for points
if ( layer->geometryType() == QgsWkbTypes::PolygonGeometry )
Expand Down

0 comments on commit 66d4af3

Please sign in to comment.