Ignore:
Timestamp:
2009-12-29T23:31:57+01:00 (14 years ago)
Author:
bastiK
Message:

fixed #4100 - unable to simply load already referenced images
Added 'jpg' to the list of available formats for 'File' > 'Open...'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/geoimage/CorrelateGpxWithImages.java

    r2676 r2702  
    10741074        Object item = cbGpx.getSelectedItem();
    10751075
    1076         if (item == null || ! (item instanceof GpxDataWrapper)) {
     1076        if (item == null || ((GpxDataWrapper) item).file == null) {
    10771077            if (complain) {
    10781078                JOptionPane.showMessageDialog(Main.parent, tr("You should select a GPX track"),
Note: See TracChangeset for help on using the changeset viewer.