Changeset 31524 in osm
- Timestamp:
- 2015-08-24T12:13:18+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/io/download/MapillaryDownloader.java
r31515 r31524 77 77 /** 78 78 * If some part of the current view has not been downloaded, it is downloaded. 79 *80 79 */ 81 80 public static void completeView() { … … 145 144 public static void automaticDownload() { 146 145 MapillaryLayer layer = MapillaryLayer.getInstance(); 146 if (Main.map.mapView.getEditLayer() == null) 147 return; 147 148 if (isAreaTooBig()) { 148 149 tooBigErrorDialog(); 149 150 return; 150 151 } 151 152 152 if (getMode() != AUTOMATIC) 153 153 throw new IllegalStateException("Must be in automatic mode.");
Note:
See TracChangeset
for help on using the changeset viewer.