Changeset 35098 in osm for applications/editors


Ignore:
Timestamp:
2019-08-23T21:48:30+02:00 (5 years ago)
Author:
donvip
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/selection/SelectBoundaryAction.java

    r33579 r35098  
    5959                } else {
    6060                    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                    }
    6264                    return;
    6365                }
Note: See TracChangeset for help on using the changeset viewer.