Changeset 7146 in josm
- Timestamp:
- 2014-05-19T18:17:18+02:00 (11 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/SelectByInternalPointAction.java
r7145 r7146 20 20 * This allows to select a polygon/multipolgon by an internal point. 21 21 */ 22 public class SelectByInternal Action extends JosmAction {22 public class SelectByInternalPointAction extends JosmAction { 23 23 24 24 /** -
trunk/src/org/openstreetmap/josm/gui/SelectionManager.java
r7144 r7146 16 16 17 17 import org.openstreetmap.josm.Main; 18 import org.openstreetmap.josm.actions.SelectByInternal Action;18 import org.openstreetmap.josm.actions.SelectByInternalPointAction; 19 19 import org.openstreetmap.josm.data.osm.Node; 20 20 import org.openstreetmap.josm.data.osm.OsmPrimitive; … … 152 152 public void mousePressed(MouseEvent e) { 153 153 if (e.getButton() == MouseEvent.BUTTON1 && e.getClickCount() > 1) { 154 SelectByInternal Action.performSelection(Main.map.mapView.getEastNorth(e.getX(), e.getY()),154 SelectByInternalPointAction.performSelection(Main.map.mapView.getEastNorth(e.getX(), e.getY()), 155 155 (e.getModifiersEx() & MouseEvent.SHIFT_DOWN_MASK) > 0, 156 156 (e.getModifiersEx() & MouseEvent.CTRL_DOWN_MASK) > 0);
Note:
See TracChangeset
for help on using the changeset viewer.