Ignore:
Timestamp:
2019-01-05T22:03:23+01:00 (5 years ago)
Author:
simon04
Message:

fix #17067 - Duplicate settings for display of hatching area

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MainMenu.java

    r14629 r14648  
    5353import org.openstreetmap.josm.actions.FullscreenToggleAction;
    5454import org.openstreetmap.josm.actions.GpxExportAction;
    55 import org.openstreetmap.josm.actions.HatchAreaOutsideDownloadAction;
     55import org.openstreetmap.josm.actions.DrawBoundariesOfDownloadedDataAction;
    5656import org.openstreetmap.josm.actions.HelpAction;
    5757import org.openstreetmap.josm.actions.HistoryInfoAction;
     
    223223    public final WireframeToggleAction wireFrameToggleAction = new WireframeToggleAction();
    224224    /** View / Hatch area outside download */
    225     public final HatchAreaOutsideDownloadAction hatchAreaOutsideDownloadAction = new HatchAreaOutsideDownloadAction();
     225    public final DrawBoundariesOfDownloadedDataAction drawBoundariesOfDownloadedDataAction = new DrawBoundariesOfDownloadedDataAction();
    226226    /** View / Advanced info */
    227227    public final InfoAction info = new InfoAction();
     
    719719        wireframe.setAccelerator(wireFrameToggleAction.getShortcut().getKeyStroke());
    720720        wireFrameToggleAction.addButtonModel(wireframe.getModel());
    721         final JCheckBoxMenuItem hatchAreaOutsideDownloadMenuItem = hatchAreaOutsideDownloadAction.getCheckbox();
     721        final JCheckBoxMenuItem hatchAreaOutsideDownloadMenuItem = drawBoundariesOfDownloadedDataAction.getCheckbox();
    722722        viewMenu.add(hatchAreaOutsideDownloadMenuItem);
    723723        ExpertToggleAction.addVisibilitySwitcher(hatchAreaOutsideDownloadMenuItem);
Note: See TracChangeset for help on using the changeset viewer.