Ticket #20598: 20598.patch
| File 20598.patch, 596 bytes (added by , 5 years ago) |
|---|
-
src/org/openstreetmap/josm/data/gpx/GpxImageEntry.java
551 551 @Override 552 552 public BBox getBBox() { 553 553 // new BBox(LatLon) is null safe. 554 return new BBox(this.getExifCoor()); 554 // Use `getPos` instead of `getExifCoor` since the image may be coorelated against a GPX track 555 return new BBox(this.getPos()); 555 556 } 556 557 557 558 /**
