Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix calculation info in Measure Line tool
  • Loading branch information
agiudiceandrea authored and github-actions[bot] committed Feb 14, 2021
1 parent b5970a3 commit 22b3726
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/qgsmeasuredialog.cpp
Expand Up @@ -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;
}
Expand Down

0 comments on commit 22b3726

Please sign in to comment.