Changeset 14137 in josm for trunk/src/org
- Timestamp:
- 2018-08-12T01:03:35+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/mapmode/ImproveWayAccuracyAction.java
r14134 r14137 512 512 } 513 513 514 515 514 } else if (candidateNode != null) { 516 515 // Moving the highlighted node … … 518 517 EastNorth cursorEN = mv.getEastNorth(mousePos.x, mousePos.y); 519 518 520 UndoRedoHandler.getInstance().add(new MoveCommand(candidateNode, cursorEN.east() - nodeEN.east(), cursorEN.north() - nodeEN.north())); 519 UndoRedoHandler.getInstance().add( 520 new MoveCommand(candidateNode, cursorEN.east() - nodeEN.east(), cursorEN.north() - nodeEN.north())); 521 521 } 522 522 }
Note:
See TracChangeset
for help on using the changeset viewer.