Ignore:
Timestamp:
2019-09-19T16:30:27+02:00 (5 years ago)
Author:
Don-vip
Message:

fix #18050 - DownloadAlong: download as new layer

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/gpx/DownloadAlongPanel.java

    r14273 r15363  
    172172                ),
    173173                new ButtonSpec(
     174                        tr("Download as new layer"),
     175                        new ImageProvider("download_new_layer"),
     176                        tr("Click to download into a new data layer"),
     177                        null // no specific help text
     178                ),
     179                new ButtonSpec(
    174180                        tr("Cancel"),
    175181                        new ImageProvider("cancel"),
     
    183189        int ret = HelpAwareOptionPane.showOptionDialog(MainApplication.getMainFrame(), this, title,
    184190                    JOptionPane.QUESTION_MESSAGE, null, options, options[0], helpTopic);
    185         if (0 == ret) {
     191        if (0 == ret || 1 == ret) {
    186192            rememberSettings();
    187193        }
Note: See TracChangeset for help on using the changeset viewer.