Changeset 33750 in osm for applications
- Timestamp:
- 2017-10-30T21:28:49+01:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/photoadjust
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/photoadjust/build.xml
r33745 r33750 5 5 <property name="commit.message" value="Commit message"/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 <property name="plugin.main.version" value="1 2792"/>7 <property name="plugin.main.version" value="13060"/> 8 8 9 9 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoPropertyEditor.java
r33745 r33750 91 91 if (dialog.getValue() == 1) { 92 92 dialog.updateImageTmp(); 93 // FIXME: Remove next line, see below.94 boolean isNewGpsData = photo.getTmp().hasNewGpsData();95 93 // There are cases where isNewGpsData is not set but there 96 94 // is still new data, e.g. if the EXIF data was re-read 97 95 // from the image file. 98 96 photo.applyTmp(); 99 // FIXME: Remove the next lines once the patch in ticket100 // #15502 is active.101 if (isNewGpsData) {102 photo.flagNewGpsData();103 }104 97 } else { 105 98 photo.discardTmp();
Note:
See TracChangeset
for help on using the changeset viewer.