- Timestamp:
- 2018-06-04T20:35:55+02:00 (6 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MainMenu.java
r13090 r13891 80 80 import org.openstreetmap.josm.actions.PurgeAction; 81 81 import org.openstreetmap.josm.actions.RedoAction; 82 import org.openstreetmap.josm.actions.ReorderImageryLayersAction; 82 83 import org.openstreetmap.josm.actions.ReportBugAction; 83 84 import org.openstreetmap.josm.actions.RestartAction; … … 387 388 private static final int defaultMenuPos = 11; 388 389 390 /** Move the selection up */ 389 391 public final JosmAction moveUpAction = new MoveAction(MoveAction.Direction.UP); 392 /** Move the selection down */ 390 393 public final JosmAction moveDownAction = new MoveAction(MoveAction.Direction.DOWN); 394 /** Move the selection left */ 391 395 public final JosmAction moveLeftAction = new MoveAction(MoveAction.Direction.LEFT); 396 /** Move the selection right */ 392 397 public final JosmAction moveRightAction = new MoveAction(MoveAction.Direction.RIGHT); 393 398 399 /** Reorder imagery layers */ 400 public final ReorderImageryLayersAction reorderImageryLayersAction = new ReorderImageryLayersAction(); 401 402 /** Search tagging presets */ 394 403 public final TaggingPresetSearchAction presetSearchAction = new TaggingPresetSearchAction(); 404 /** Search objects by their tagging preset */ 395 405 public final TaggingPresetSearchPrimitiveDialog.Action presetSearchPrimitiveAction = new TaggingPresetSearchPrimitiveDialog.Action(); 406 /** Toggle visibility of dialogs panel */ 396 407 public final DialogsToggleAction dialogsToggleAction = new DialogsToggleAction(); 408 /** Toggle the full-screen mode */ 397 409 public FullscreenToggleAction fullscreenToggleAction; 398 410 … … 761 773 presetsMenu.addSeparator(); 762 774 775 add(imageryMenu, reorderImageryLayersAction); 763 776 add(imageryMenu, PreferencesAction.forPreferenceTab(tr("Imagery preferences"), 764 777 tr("Click to open the imagery tab in the preferences"), ImageryPreference.class));
Note:
See TracChangeset
for help on using the changeset viewer.