Changeset 35098 in osm for applications/editors/josm/plugins
- Timestamp:
- 2019-08-23T21:48:30+02:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/selection/SelectBoundaryAction.java
r33579 r35098 59 59 } else { 60 60 Point p = MainApplication.getMap().mapView.getMousePosition(); 61 SelectByInternalPointAction.performSelection(MainApplication.getMap().mapView.getEastNorth(p.x, p.y), false, false); 61 if (p != null) { 62 SelectByInternalPointAction.performSelection(MainApplication.getMap().mapView.getEastNorth(p.x, p.y), false, false); 63 } 62 64 return; 63 65 }
Note:
See TracChangeset
for help on using the changeset viewer.