Changeset 20679 in osm for applications/editors/josm/plugins/openstreetbugs/src
- Timestamp:
- 2010-03-26T15:24:08+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/OsbLayer.java
r20678 r20679 236 236 if(Main.map.mapView.getActiveLayer() == this) { 237 237 Node n = getNearestNode(e.getPoint()); 238 if( data.getNodes().contains(n)) {238 if(n != null && data.getNodes().contains(n)) { 239 239 dialog.setSelectedNode(n); 240 240 }
Note:
See TracChangeset
for help on using the changeset viewer.