Ignore:
Timestamp:
2010-08-03T22:06:36+02:00 (14 years ago)
Author:
bastiK
Message:

fixed #5275 - Displayed co-ordinate precision adjustment

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/InspectPrimitiveDialog.java

    r3398 r3411  
    7777                continue;
    7878            }
    79             s.append(String.format(" lat=%f; lon=%f; ", n.getCoor().lat(), n.getCoor().lon()));
     79            s.append(String.format(" lat=%s; lon=%s; ", Double.toString(n.getCoor().lat()), Double.toString(n.getCoor().lon())));
    8080            addCommon(s, n);
    8181            addAttributes(s, n);
Note: See TracChangeset for help on using the changeset viewer.