Skip to content

Commit a3b808c

Browse files
author
jef
committed
fix #1024
git-svn-id: http://svn.osgeo.org/qgis/trunk@8310 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent f790afc commit a3b808c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/qgsdistancearea.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ QString QgsDistanceArea::textUnit(double value, int decimals, QGis::units u, boo
648648
unitLabel = QObject::tr(" km2");
649649
value = value / 1000000.0;
650650
}
651-
else if (fabs(value) > 1000.0)
651+
else if (fabs(value) > 10000.0)
652652
{
653653
unitLabel = QObject::tr(" ha");
654654
value = value / 10000.0;

0 commit comments

Comments
 (0)