Changeset 31287 in osm for applications/editors


Ignore:
Timestamp:
2015-06-19T21:51:20+02:00 (10 years ago)
Author:
simon04
Message:

fix #josm10897 - JOSM/mirrored_download: Disable and pre-set source checkboxes (patch by bastiK)

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

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/mirrored_download/build.xml

    r30962 r31287  
    55    <property name="commit.message" value=""/>
    66    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    7     <property name="plugin.main.version" value="7575"/>
     7    <property name="plugin.main.version" value="7722"/>
    88
    99    <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/mirrored_download/src/mirrored_download/MirroredDownloadAction.java

    r30664 r31287  
    123123        private MirroredDownloadDialog(Component parent) {
    124124            super(parent);
     125            cbDownloadOsmData.setSelected(true);
     126            cbDownloadGpxData.setSelected(false);
     127            cbDownloadNotes.setSelected(false);
    125128            cbDownloadOsmData.setEnabled(false);
    126129            cbDownloadGpxData.setEnabled(false);
     130            cbDownloadNotes.setEnabled(false);
    127131            cbStartup.setEnabled(false);
    128132        }
Note: See TracChangeset for help on using the changeset viewer.