Changeset 145 in josm for src/org/openstreetmap/josm/io


Ignore:
Timestamp:
2006-10-01T22:45:50+02:00 (19 years ago)
Author:
imi
Message:
  • fixed bug that incomplete ways get selected when selecting nothing as rectangle
  • geotagged image popup is now non-modal
  • fixed mappaint plugin to unregister itself when deleting a layer
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/io/GpxWriter.java

    r143 r145  
    9292                        GpxWriter writer = new GpxWriter(out);
    9393                        // calculate bounds
    94                         Bounds b = new Bounds(new LatLon(Double.MAX_VALUE, Double.MAX_VALUE), new LatLon(Double.MIN_VALUE, Double.MIN_VALUE));
     94                        Bounds b = new Bounds(new LatLon(Double.MAX_VALUE, Double.MAX_VALUE), new LatLon(-Double.MAX_VALUE, -Double.MAX_VALUE));
    9595                        for (Node n : data.nodes)
    9696                                if (!n.deleted)
Note: See TracChangeset for help on using the changeset viewer.