Changeset 35256 in osm for applications/editors/josm/plugins/FastDraw/src
- Timestamp:
- 2019-12-23T22:23:43+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FastDrawingMode.java
r34510 r35256 356 356 357 357 if (!drawing) { 358 if (dragNode >= 0) { 358 if (dragNode >= 0 && dragNode < line.getPointCount()) { 359 359 line.moveNode(dragNode, getLatLon(e)); 360 360 repaint(); … … 564 564 } 565 565 } 566 if (nd. getCoor().isOutSideWorld()) {566 if (nd.isOutSideWorld()) { 567 567 JOptionPane.showMessageDialog(MainApplication.getMainFrame(), 568 568 tr("Cannot place node outside of the world."));
Note:
See TracChangeset
for help on using the changeset viewer.