Changeset 34239 in osm for applications
- Timestamp:
- 2018-06-03T11:32:40+02:00 (6 years ago)
- Location:
- applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/actions/FixTask.java
r34204 r34239 86 86 monitor.subTask(tr("Updating map ...")); 87 87 SwingUtilities.invokeAndWait(() -> { 88 MainApplication.undoRedo.afterAdd( null);88 MainApplication.undoRedo.afterAdd(); 89 89 MainApplication.getMap().repaint(); 90 90 }); -
applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/validation/SegmentChecker.java
r34204 r34239 942 942 ChangeCommand changeCommand = new ChangeCommand(originalRelation, modifiedRelation); 943 943 MainApplication.undoRedo.addNoRedraw(changeCommand); 944 MainApplication.undoRedo.afterAdd( changeCommand);944 MainApplication.undoRedo.afterAdd(); 945 945 PTRouteSegment wrongSegment = wrongSegments.get(testError); 946 946 wrongSegments.remove(testError); … … 1077 1077 ChangeCommand changeCommand = new ChangeCommand(originalRelation, modifiedRelation); 1078 1078 MainApplication.undoRedo.addNoRedraw(changeCommand); 1079 MainApplication.undoRedo.afterAdd( changeCommand);1079 MainApplication.undoRedo.afterAdd(); 1080 1080 wrongSegmentsToRemove.add(testError); 1081 1081 }
Note:
See TracChangeset
for help on using the changeset viewer.