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"

(cherry-picked from 66d4af3)
  • Loading branch information
nyalldawson committed Aug 10, 2016
1 parent b3b372d commit f6519fa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/core/qgspallabeling.cpp
Expand Up @@ -789,6 +789,9 @@ void QgsPalLayerSettings::readFromLayer( QgsVectorLayer* layer )
{
if ( layer->customProperty( "labeling" ).toString() != QLatin1String( "pal" ) )
{
if ( layer->geometryType() == QGis::Point )
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() == QGis::Polygon )
Expand Down

0 comments on commit f6519fa

Please sign in to comment.