Changeset 10816 in josm
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MainMenu.java
r10766 r10816 44 44 import org.openstreetmap.josm.actions.DownloadAction; 45 45 import org.openstreetmap.josm.actions.DownloadNotesInViewAction; 46 import org.openstreetmap.josm.actions.DownloadOsmInViewAction; 46 47 import org.openstreetmap.josm.actions.DownloadPrimitiveAction; 47 48 import org.openstreetmap.josm.actions.DownloadReferrersAction; … … 158 159 /** File / Download from OSM... **/ 159 160 public final DownloadAction download = new DownloadAction(); 161 /** File / Download in current view **/ 162 public final DownloadOsmInViewAction downloadInView = new DownloadOsmInViewAction(); 160 163 /** File / Download from Overpass API... **/ 161 164 public final OverpassDownloadAction overpassDownload = new OverpassDownloadAction(); … … 656 659 fileMenu.addSeparator(); 657 660 add(fileMenu, download); 661 add(fileMenu, downloadInView, true); 658 662 add(fileMenu, overpassDownload, true); 659 663 add(fileMenu, downloadPrimitive);
Note:
See TracChangeset
for help on using the changeset viewer.