Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fix calculation info in Measure Line tool
- Loading branch information
Showing
with
2 additions
and
2 deletions.
-
+2
−2
src/app/qgsmeasuredialog.cpp
|
@@ -461,12 +461,12 @@ void QgsMeasureDialog::updateUi() |
|
|
toolTip += "<br> * "; |
|
|
if ( mCartesian->isChecked() ) |
|
|
{ |
|
|
toolTip += tr( "Cartesian calculation selected, so area is calculated using Cartesian calculations." ); |
|
|
toolTip += tr( "Cartesian calculation selected, so distance is calculated using Cartesian calculations." ); |
|
|
mConvertToDisplayUnits = true; |
|
|
} |
|
|
else |
|
|
{ |
|
|
toolTip += tr( "No map projection set, so area is calculated using Cartesian calculations." ); |
|
|
toolTip += tr( "No map projection set, so distance is calculated using Cartesian calculations." ); |
|
|
toolTip += "<br> * " + tr( "Units are unknown." ); |
|
|
mConvertToDisplayUnits = false; |
|
|
} |
|
|