Changeset 5377 in josm
- Timestamp:
- 2012-07-28T20:22:17+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/MoveAction.java
r4982 r5377 115 115 ? Main.main.undoRedo.commands.getLast() : null; 116 116 117 getCurrentDataSet().beginUpdate(); 117 118 if (c instanceof MoveCommand && affectedNodes.equals(((MoveCommand)c).getParticipatingPrimitives())) { 118 119 ((MoveCommand)c).moveAgain(distx, disty); … … 121 122 c = new MoveCommand(selection, distx, disty)); 122 123 } 123 124 getCurrentDataSet().endUpdate(); 125 124 126 for (Node n : affectedNodes) { 125 127 if (n.getCoor().isOutSideWorld()) {
Note:
See TracChangeset
for help on using the changeset viewer.