Ignore:
Timestamp:
2012-02-20T19:25:50+01:00 (12 years ago)
Author:
stoecker
Message:

fix toolbar issues

Location:
applications/editors/josm/plugins/mirrored_download/src/mirrored_download
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/mirrored_download/src/mirrored_download/DownloadAction2.java

    r27852 r27906  
    2929    public DownloadAction2() {
    3030        super(tr("Download from OSM mirror..."), null, tr("Download map data from the OSM server."),
    31                 Shortcut.registerShortcut("mirror:download", tr("File: {0}", tr("Download from OSM mirror...")), KeyEvent.VK_DOWN, Shortcut.ALT_SHIFT), true);
     31            Shortcut.registerShortcut("mirror:download", tr("File: {0}", tr("Download from OSM mirror...")), KeyEvent.VK_DOWN, Shortcut.ALT_SHIFT),
     32            true, "mirroreddownload/download", true);
    3233        putValue("help", ht("/Action/MirroredDownload"));
    3334    }
  • applications/editors/josm/plugins/mirrored_download/src/mirrored_download/UrlSelectionAction.java

    r27852 r27906  
    2525    public UrlSelectionAction() {
    2626        super(tr("Select URL..."), null, tr("Select URL to download from."),
    27                 Shortcut.registerShortcut("file:selecturl", tr("File: {0}", tr("Select URL...")), KeyEvent.VK_D, Shortcut.CTRL_SHIFT), true);
     27                Shortcut.registerShortcut("file:selecturl", tr("File: {0}", tr("Select URL...")), KeyEvent.VK_D, Shortcut.CTRL_SHIFT),
     28                true, "mirroreddownload/urlselection", true);
    2829        putValue("help", ht("/Action/SelectUrl"));
    2930    }
Note: See TracChangeset for help on using the changeset viewer.