Changeset 21796 in osm for applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSPlugin.java
- Timestamp:
- 2010-06-19T14:11:57+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSPlugin.java ¶
r19415 r21796 53 53 static int overlapEast = 14; 54 54 static int overlapNorth = 4; 55 static int simultaneousConnections = 3; 55 56 56 57 // remember state of menu item to restore on changed preferences … … 110 111 overlapNorth = Integer.valueOf(prefs.get("wmsplugin.url.overlapNorth")); 111 112 } 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. 112 118 113 119 // And then the names+urls of WMS servers
Note:
See TracChangeset
for help on using the changeset viewer.