Ignore:
Timestamp:
2014-08-23T21:26:31+02:00 (10 years ago)
Author:
bastiK
Message:

fixed #10410 - session: imagery layer settings not stored

File:
1 edited

Legend:

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

    r7425 r7438  
    239239        return autoDownloadEnabled;
    240240    }
     241   
     242    public void setAutoDownload(boolean val) {
     243        autoDownloadEnabled = val;
     244    }
     245   
     246    public boolean isAutoResolution() {
     247        return autoResolutionEnabled;
     248    }
     249   
     250    public void setAutoResolution(boolean val) {
     251        autoResolutionEnabled = val;
     252    }
    241253
    242254    public void downloadAreaToCache(PrecacheTask precacheTask, List<LatLon> points, double bufferX, double bufferY) {
Note: See TracChangeset for help on using the changeset viewer.