Skip to content

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/gui/qgsmeasure.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ QString QgsMeasure::formatDistance(double distance)
270270
QString QgsMeasure::formatArea(double area)
271271
{
272272
QString txt;
273-
if (area < 1000)
273+
if (area < 10000)
274274
{
275275
txt = QString::number(area,'f',0);
276276
txt += " m2";

0 commit comments

Comments
 (0)
Please sign in to comment.