Changeset 20678 in osm for applications/editors/josm
- Timestamp:
- 2010-03-26T15:22:09+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
r19282 r20678 255 255 if(Main.map.mapView.getActiveLayer() == this) { 256 256 Node n = getNearestNode(e.getPoint()); 257 if(data.getNodes().contains(n)) { 257 if(n != null && data.getNodes().contains(n)) { 258 258 PopupFactory.createPopup(n, dialog).show(e.getComponent(), e.getX(), e.getY()); 259 259 }
Note:
See TracChangeset
for help on using the changeset viewer.