Changeset 29595 in osm for applications/editors/josm/plugins/junctionchecking/src
- Timestamp:
- 2013-05-14T22:49:46+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/junctionchecking/src/org/openstreetmap/josm/plugins/JunctionChecker/JunctionCheckerMapMode.java
r28610 r29595 83 83 return; 84 84 } 85 requestFocusInMapView(); 85 86 digraph.ereaseJunctioncandidate();//um zu verhindern, dass gefundene Kreuzungen/Kandidaten weiterhin weiß gezeichnet werden 86 87 Point pointReleased = e.getPoint(); 87 88 88 89 Rectangle r = createRect(pointReleased, pointPressed); 89 boolean ctrl = (e.getModifiers() & ActionEvent.CTRL_MASK) != 0;90 //boolean ctrl = (e.getModifiers() & ActionEvent.CTRL_MASK) != 0; 90 91 boolean shift = (e.getModifiers() & ActionEvent.SHIFT_MASK) != 0; 91 boolean alt = (e.getModifiers() & ActionEvent.ALT_MASK) != 0;92 //boolean alt = (e.getModifiers() & ActionEvent.ALT_MASK) != 0; 92 93 if (shift == false) { 93 94 digraph.ereaseSelectedChannels();
Note:
See TracChangeset
for help on using the changeset viewer.