Changeset 5544 in josm


Ignore:
Timestamp:
2012-10-31T09:23:53+01:00 (11 years ago)
Author:
bastiK
Message:

applied #8169 - Fix lat/lon in bounding box panel (patch by simonsonc)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/widgets/BoundingBoxSelectionPanel.java

    r4380 r5544  
    107107        double minlon, minlat, maxlon,maxlat;
    108108        try {
    109             minlon = Double.parseDouble(tfLatLon[0].getText().trim());
    110             minlat = Double.parseDouble(tfLatLon[1].getText().trim());
    111             maxlon = Double.parseDouble(tfLatLon[2].getText().trim());
    112             maxlat = Double.parseDouble(tfLatLon[3].getText().trim());
     109            minlat = Double.parseDouble(tfLatLon[0].getText().trim());
     110            minlon = Double.parseDouble(tfLatLon[1].getText().trim());
     111            maxlat = Double.parseDouble(tfLatLon[2].getText().trim());
     112            maxlon = Double.parseDouble(tfLatLon[3].getText().trim());
    113113        } catch(NumberFormatException e) {
    114114            return null;
Note: See TracChangeset for help on using the changeset viewer.