Changeset 34060 in osm for applications/editors/josm/plugins
- Timestamp:
- 2018-02-11T02:14:44+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/addrinterpolation/src/org/openstreetmap/josm/plugins/AddrInterpolation/AddrInterpolationDialog.java
r33692 r34060 1089 1089 1090 1090 if (relationChanged) { 1091 commandGroup.add(new ChangeCommand(associatedStreetRelation, editedRelation)); 1092 } 1093 1094 Main.main.undoRedo.add(new SequenceCommand(tr("Address Interpolation"), commandGroup)); 1095 MainApplication.getLayerManager().getEditLayer().invalidate(); 1091 commandGroup.add(new ChangeCommand(currentDataSet, associatedStreetRelation, editedRelation)); 1092 } 1093 1094 if (!commandGroup.isEmpty()) { 1095 Main.main.undoRedo.add(new SequenceCommand(tr("Address Interpolation"), commandGroup)); 1096 MainApplication.getLayerManager().getEditLayer().invalidate(); 1097 } 1096 1098 1097 1099 return true;
Note:
See TracChangeset
for help on using the changeset viewer.