Changeset 8212 in josm
- Timestamp:
- 2015-04-18T02:23:03+02:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MainMenu.java
r8081 r8212 52 52 import org.openstreetmap.josm.actions.DistributeAction; 53 53 import org.openstreetmap.josm.actions.DownloadAction; 54 import org.openstreetmap.josm.actions.DownloadNotesInViewAction; 54 55 import org.openstreetmap.josm.actions.DownloadPrimitiveAction; 55 56 import org.openstreetmap.josm.actions.DownloadReferrersAction; … … 167 168 /** File / Download object... **/ 168 169 public final DownloadPrimitiveAction downloadPrimitive = new DownloadPrimitiveAction(); 170 /** File / Download notes in current view **/ 171 public final DownloadNotesInViewAction downloadNotesInView = DownloadNotesInViewAction.newActionWithNoteIcon(); 169 172 /** File / Search Notes... **/ 170 173 public final SearchNotesDownloadAction searchNotes = new SearchNotesDownloadAction(); … … 638 641 add(fileMenu, downloadPrimitive); 639 642 add(fileMenu, searchNotes); 643 add(fileMenu, downloadNotesInView); 640 644 add(fileMenu, downloadReferrers); 641 645 add(fileMenu, update); -
trunk/src/org/openstreetmap/josm/gui/dialogs/NotesDialog.java
r8115 r8212 31 31 32 32 import org.openstreetmap.josm.Main; 33 import org.openstreetmap.josm.actions.DownloadNotesInViewAction; 33 34 import org.openstreetmap.josm.actions.UploadNotesAction; 34 35 import org.openstreetmap.josm.actions.mapmode.AddNoteAction; … … 78 79 private final AddCommentAction addCommentAction; 79 80 private final CloseAction closeAction; 81 private final DownloadNotesInViewAction downloadNotesInViewAction; 80 82 private final NewAction newAction; 81 83 private final ReopenAction reopenAction; … … 90 92 addCommentAction = new AddCommentAction(); 91 93 closeAction = new CloseAction(); 94 downloadNotesInViewAction = DownloadNotesInViewAction.newActionWithDownloadIcon(); 92 95 newAction = new NewAction(); 93 96 reopenAction = new ReopenAction(); … … 132 135 133 136 createLayout(pane, false, Arrays.asList(new SideButton[]{ 137 new SideButton(downloadNotesInViewAction, false), 134 138 new SideButton(newAction, false), 135 139 new SideButton(addCommentAction, false),
Note:
See TracChangeset
for help on using the changeset viewer.