Ignore:
Timestamp:
2010-06-19T14:11:57+02:00 (15 years ago)
Author:
stoecker
Message:

fix josm 5152

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSPlugin.java

    r19415 r21796  
    5353    static int overlapEast = 14;
    5454    static int overlapNorth = 4;
     55    static int simultaneousConnections = 3;
    5556
    5657    // remember state of menu item to restore on changed preferences
     
    110111            overlapNorth = Integer.valueOf(prefs.get("wmsplugin.url.overlapNorth"));
    111112        } catch (Exception e) {} // If sth fails, we drop to default settings.
     113               
     114        // Load the settings for number of simultaneous connections
     115        try {
     116            simultaneousConnections = Integer.valueOf(prefs.get("wmsplugin.simultanousConnections"));
     117        } catch (Exception e) {} // If sth fails, we drop to default settings.
    112118
    113119        // And then the names+urls of WMS servers
Note: See TracChangeset for help on using the changeset viewer.