Changeset 8444 in josm for trunk/src/org/openstreetmap/josm/actions/mapmode/ExtrudeAction.java
- Timestamp:
- 2015-06-02T16:41:37+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/mapmode/ExtrudeAction.java
r8395 r8444 526 526 } 527 527 } else if (mode == Mode.extrude) { 528 if (e.getClickCount() == 2 && e.getPoint().equals(initialMousePos)) {528 if (e.getClickCount() == 2 && e.getPoint().equals(initialMousePos)) { 529 529 // double click adds a new node 530 530 addNewNode(e); … … 857 857 EastNorth n2en = selectedSegment.getSecondNode().getEastNorth(); 858 858 if (n1en.distance(prevNode.getEastNorth())<1e-4 || 859 n2en.distance(nextNode.getEastNorth())<1e-4 ) {859 n2en.distance(nextNode.getEastNorth())<1e-4) { 860 860 return false; 861 861 }
Note:
See TracChangeset
for help on using the changeset viewer.
