File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/plugins/coordinate_capture Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -181,14 +181,14 @@ void CoordinateCapture::setCRS()
181
181
{
182
182
mCrs .createFromSrsId ( mySelector.selectedCrsId () );
183
183
mTransform .setDestCRS ( mCrs );
184
- mUserCrsDisplayPrecision = ( mCrs .mapUnits () == QGis::Degrees ) ? 3 : 5 ; // precision depends on CRS units
184
+ mUserCrsDisplayPrecision = ( mCrs .mapUnits () == QGis::Degrees ) ? 5 : 3 ; // precision depends on CRS units
185
185
}
186
186
}
187
187
188
188
void CoordinateCapture::setSourceCrs ()
189
189
{
190
190
mTransform .setSourceCrs ( mQGisIface ->mapCanvas ()->mapRenderer ()->destinationSrs () );
191
- mCanvasDisplayPrecision = ( mQGisIface ->mapCanvas ()->mapRenderer ()->destinationSrs ().mapUnits () == QGis::Degrees ) ? 3 : 5 ; // for the map canvas coordinate display
191
+ mCanvasDisplayPrecision = ( mQGisIface ->mapCanvas ()->mapRenderer ()->destinationSrs ().mapUnits () == QGis::Degrees ) ? 5 : 3 ; // for the map canvas coordinate display
192
192
}
193
193
194
194
void CoordinateCapture::mouseClicked ( QgsPoint thePoint )
You can’t perform that action at this time.
0 commit comments