Skip to content

Commit

Permalink
#9060: fix unmanaged selection for NauticalMiles units
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuarte47 authored and wonder-sk committed Feb 20, 2014
1 parent b27780d commit 35791aa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/app/qgsprojectproperties.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,10 @@ void QgsProjectProperties::apply()
{
mapUnit = QGis::Feet;
}
else if ( radNMiles->isChecked() )
{
mapUnit = QGis::NauticalMiles;
}
else
{
mapUnit = QGis::Meters;
Expand Down

0 comments on commit 35791aa

Please sign in to comment.