Changeset 32827 in osm for applications/editors/josm
- Timestamp:
- 2016-08-18T03:26:38+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/RelationEditMode.java
r32456 r32827 47 47 @Override 48 48 public void mouseMoved(MouseEvent e) { 49 Way nearestWay = Main.map.mapView.getNearestWay(e.getPoint(), OsmPrimitive .isUsablePredicate);49 Way nearestWay = Main.map.mapView.getNearestWay(e.getPoint(), OsmPrimitive::isUsable); 50 50 if (nearestWay != highlightedWay) { 51 51 if (highlightedWay != null) { … … 65 65 return; 66 66 67 Way way = Main.map.mapView.getNearestWay(e.getPoint(), OsmPrimitive .isUsablePredicate);67 Way way = Main.map.mapView.getNearestWay(e.getPoint(), OsmPrimitive::isUsable); 68 68 Collection<Relation> selectedRelations = getLayerManager().getEditDataSet().getSelectedRelations(); 69 69
Note:
See TracChangeset
for help on using the changeset viewer.