Changeset 1554 in osm for utils


Ignore:
Timestamp:
2006-11-08T23:07:19+01:00 (18 years ago)
Author:
nick
Message:

First bug reported by Andy Robinson 08/11/06 corrected

Location:
utils/josm/plugins/landsat/src/landsat
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • utils/josm/plugins/landsat/src/landsat/DownloadLandsatTask.java

    r1553 r1554  
    5252        }
    5353
     54        public void setCheckBoxSelected(boolean b) {
     55                checkBox.setSelected(b);
     56        }
     57
    5458        public String getPreferencesSuffix() {
    5559                return "landsat";
  • utils/josm/plugins/landsat/src/landsat/LandsatPlugin.java

    r1553 r1554  
    1313        DownloadLandsatTask task;
    1414        LandsatLayer landsatLayer;
    15         boolean addedAction;
    1615
    1716        public LandsatPlugin() {
     
    2726
    2827        public void mapFrameInitialized(MapFrame oldFrame, MapFrame newFrame) {
    29                 if(!addedAction) {
     28                if(oldFrame==null && newFrame!=null) {
     29                        task.setEnabled(true);
     30
     31                        /* re. bug report (Andy Robinson) 08/11/06...
     32                         * Neither of these seem to work
     33                        task.setCheckBoxSelected(false);
     34                        Main.pref.put("download.landsat",false);
     35                        */
     36
    3037                        Main.map.toolBarActions.addSeparator();
    3138                        Main.map.toolBarActions.add(new IconToggleButton
    3239                                                (new LandsatAdjustAction(Main.map)));
    33                         addedAction=true;
    34                 }
    35                 if(oldFrame==null && newFrame!=null) {
    36                         task.setEnabled(true);
    3740                } else if (oldFrame!=null && newFrame==null ) {
    3841                        task.setEnabled(false);
Note: See TracChangeset for help on using the changeset viewer.