Changeset 16770 in josm
- Timestamp:
- 2020-07-15T15:54:08+02:00 (4 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/actions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/UpdateDataAction.java
r16509 r16770 86 86 87 87 if (areasToDownload.isEmpty()) { 88 // no bounds defined in the dataset? we update all primitives in the data set using a series of multi fetch requests 89 UpdateSelectionAction.updatePrimitives(editLayer.data.allPrimitives()); 88 // no bounds defined in the dataset? We update all but the incomplete primitives in the data set 89 UpdateSelectionAction.updatePrimitives(editLayer.data.allPrimitives().stream() 90 .filter(p -> !p.isNew() && !p.isIncomplete()).collect(Collectors.toList())); 90 91 } else { 91 92 // bounds defined? => use the bbox downloader -
trunk/src/org/openstreetmap/josm/actions/downloadtasks/DownloadTaskList.java
r16438 r16770 266 266 Utils.joinAsHtmlUnorderedList(items)) + "</html>", 267 267 tr("Errors during download"), JOptionPane.ERROR_MESSAGE); 268 return; 268 269 } 269 270 }); 270 271 return;272 271 } 273 272
Note:
See TracChangeset
for help on using the changeset viewer.