Navigation Menu

Skip to content

Commit

Permalink
Default to search distance in mm for displacement renderer
Browse files Browse the repository at this point in the history
(easier behaviour to understand for new users, avoids map unit default
which is not applicable for all CRSes)
  • Loading branch information
nyalldawson committed Sep 17, 2015
1 parent 55027e5 commit 1bd87e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/symbology-ng/qgspointdisplacementrenderer.cpp
Expand Up @@ -35,8 +35,8 @@ QgsPointDisplacementRenderer::QgsPointDisplacementRenderer( const QString& label
: QgsFeatureRendererV2( "pointDisplacement" )
, mLabelAttributeName( labelAttributeName )
, mLabelIndex( -1 )
, mTolerance( 0.00001 )
, mToleranceUnit( QgsSymbolV2::MapUnit )
, mTolerance( 3 )
, mToleranceUnit( QgsSymbolV2::MM )
, mCircleWidth( 0.4 )
, mCircleColor( QColor( 125, 125, 125 ) )
, mCircleRadiusAddition( 0 )
Expand Down

0 comments on commit 1bd87e8

Please sign in to comment.