Changeset 101 in josm for src/org/openstreetmap/josm/actions/mapmode/SelectionAction.java
- Timestamp:
- 2006-05-03T22:21:02+02:00 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/org/openstreetmap/josm/actions/mapmode/SelectionAction.java
r98 r101 11 11 import org.openstreetmap.josm.gui.SelectionManager; 12 12 import org.openstreetmap.josm.gui.SelectionManager.SelectionEnded; 13 import org.openstreetmap.josm.tools.ImageProvider; 13 14 14 15 /** … … 64 65 */ 65 66 public SelectionAction(MapFrame mapFrame) { 66 super("Selection", "selection", "Select objects by dragging or clicking.", "S", KeyEvent.VK_S, mapFrame); 67 super("Selection", 68 "selection", 69 "Select objects by dragging or clicking.", 70 "S", 71 KeyEvent.VK_S, 72 mapFrame, 73 ImageProvider.getCursor("normal", "selection")); 67 74 this.selectionManager = new SelectionManager(this, false, mapFrame.mapView); 68 75 }
Note:
See TracChangeset
for help on using the changeset viewer.