Changeset 983 in josm
- Timestamp:
- 2008-09-17T10:38:53+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/mapmode/ZoomAction.java
r627 r983 45 45 */ 46 46 public ZoomAction(MapFrame mapFrame) { 47 super(tr("Zoom"), "zoom", tr("Zoom in by dragging. (Ctrl+up,left,down,right,',','.')"), KeyEvent.VK_Z, mapFrame, ImageProvider.getCursor("normal", "zoom"));47 super(tr("Zoom"), "zoom", tr("Zoom and move map"), KeyEvent.VK_Z, mapFrame, ImageProvider.getCursor("normal", "zoom")); 48 48 mv = mapFrame.mapView; 49 49 selectionManager = new SelectionManager(this, true, mv); … … 72 72 73 73 @Override public String getModeHelpText() { 74 return tr("Zoom inby dragging.");74 return tr("Zoom by dragging or Ctrl+. or Ctrl+,; move with Ctrl+up,left,down,right; move zoom with right button"); 75 75 } 76 76 }
Note:
See TracChangeset
for help on using the changeset viewer.