Skip to content

Commit b8e86e2

Browse files
author
timlinux
committed
Fix for #2165
git-svn-id: http://svn.osgeo.org/qgis/trunk@12289 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 150ff82 commit b8e86e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/coordinate_capture/coordinatecapture.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ void CoordinateCapture::initGui()
9090

9191
setSourceCrs(); //set up the source CRS
9292
mTransform.setDestCRS( mCrs ); // set the CRS in the transform
93-
mUserCrsDisplayPrecision = ( mCrs.mapUnits() == QGis::Degrees ) ? 3 : 5; // precision depends on CRS units
93+
mUserCrsDisplayPrecision = ( mCrs.mapUnits() == QGis::Degrees ) ? 5 : 3; // precision depends on CRS units
9494

9595
// Create the action for tool
9696
mQActionPointer = new QAction( QIcon(), tr( "Coordinate Capture" ), this );

0 commit comments

Comments
 (0)