Changeset 9862 in josm for trunk/src/org


Ignore:
Timestamp:
2016-02-23T21:12:22+01:00 (8 years ago)
Author:
simon04
Message:

fix #12563 - Allow to customize LatLon formatting

Use the preference keys latlon.dms.decimal-format and
latlon.dm.decimal-format.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/coor/LatLon.java

    r9861 r9862  
    6363
    6464    private static DecimalFormat cDmsMinuteFormatter = new DecimalFormat("00");
    65     private static DecimalFormat cDmsSecondFormatter = new DecimalFormat("00.0");
    66     private static DecimalFormat cDmMinuteFormatter = new DecimalFormat("00.000");
     65    private static DecimalFormat cDmsSecondFormatter = new DecimalFormat(Main.pref.get("latlon.dms.decimal-format", "00.0"));
     66    private static DecimalFormat cDmMinuteFormatter = new DecimalFormat(Main.pref.get("latlon.dm.decimal-format", "00.000"));
    6767    public static final DecimalFormat cDdFormatter;
    6868    public static final DecimalFormat cDdHighPecisionFormatter;
Note: See TracChangeset for help on using the changeset viewer.