Ignore:
Timestamp:
2013-03-24T06:51:38+01:00 (13 years ago)
Author:
zverik
Message:

small fixes in iodb plugin

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/imagery_offset_db/src/iodb/ImageryOffsetTools.java

    r29384 r29390  
    140140        if( d < 950 )    return formatDistance(d,        tr("m"),  false );
    141141        if( d < 9500 )   return formatDistance(d / 1000, tr("km"), true);
    142         return formatDistance(d / 1000, tr("km"), false);
     142        if( d < 1e6 )    return formatDistance(d / 1000, tr("km"), false);
     143        return "\u221E";
    143144    }
    144145
Note: See TracChangeset for help on using the changeset viewer.