- Timestamp:
- 2006-04-23T20:54:00+02:00 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/org/openstreetmap/josm/actions/mapmode/MoveAction.java
r94 r96 95 95 } 96 96 97 Command c = mv.editLayer().commands.getLast();97 Command c = !mv.editLayer().commands.isEmpty() ? mv.editLayer().commands.getLast() : null; 98 98 if (c instanceof MoveCommand && affectedNodes.equals(((MoveCommand)c).objects)) 99 99 ((MoveCommand)c).moveAgain(dx,dy);
Note:
See TracChangeset
for help on using the changeset viewer.