Changeset 35256 in osm for applications/editors/josm/plugins
- Timestamp:
- 2019-12-23T22:23:43+01:00 (5 years ago)
- Location:
- applications/editors/josm/plugins/FastDraw
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FastDraw/build.xml
r34510 r35256 4 4 <property name="commit.message" value="[josm_fastdraw] Fix incorrect settings saving-2"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="14 153"/>6 <property name="plugin.main.version" value="14960"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
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.