Skip to content

Commit

Permalink
Partial fix for ticket #438 (measure area units are inconvenient)
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@6239 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Dec 11, 2006
1 parent 85828f4 commit 0920216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsmeasure.cpp
Expand Up @@ -270,7 +270,7 @@ QString QgsMeasure::formatDistance(double distance)
QString QgsMeasure::formatArea(double area)
{
QString txt;
if (area < 1000)
if (area < 10000)
{
txt = QString::number(area,'f',0);
txt += " m2";
Expand Down

0 comments on commit 0920216

Please sign in to comment.