Changeset 33750 in osm


Ignore:
Timestamp:
2017-10-30T21:28:49+01:00 (7 years ago)
Author:
holgermappt
Message:

Removed isNewGpsData workaround.

Location:
applications/editors/josm/plugins/photoadjust
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/photoadjust/build.xml

    r33745 r33750  
    55    <property name="commit.message" value="Commit message"/>
    66    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    7     <property name="plugin.main.version" value="12792"/>
     7    <property name="plugin.main.version" value="13060"/>
    88
    99    <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoPropertyEditor.java

    r33745 r33750  
    9191                if (dialog.getValue() == 1) {
    9292                    dialog.updateImageTmp();
    93                     // FIXME: Remove next line, see below.
    94                     boolean isNewGpsData = photo.getTmp().hasNewGpsData();
    9593                    // There are cases where isNewGpsData is not set but there
    9694                    // is still new data, e.g. if the EXIF data was re-read
    9795                    // from the image file.
    9896                    photo.applyTmp();
    99                     // FIXME: Remove the next lines once the patch in ticket
    100                     // #15502 is active.
    101                     if (isNewGpsData) {
    102                         photo.flagNewGpsData();
    103                     }
    10497                } else {
    10598                    photo.discardTmp();
Note: See TracChangeset for help on using the changeset viewer.