Changeset 22954 in osm for applications/editors/josm/plugins
- Timestamp:
- 2010-09-02T23:03:23+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSLayer.java
r22929 r22954 33 33 import org.openstreetmap.josm.actions.SaveActionBase; 34 34 import org.openstreetmap.josm.data.Bounds; 35 import org.openstreetmap.josm.data.ProjectionBounds;36 35 import org.openstreetmap.josm.data.Preferences.PreferenceChangeEvent; 37 36 import org.openstreetmap.josm.data.Preferences.PreferenceChangedListener; 37 import org.openstreetmap.josm.data.ProjectionBounds; 38 38 import org.openstreetmap.josm.data.coor.EastNorth; 39 39 import org.openstreetmap.josm.data.osm.visitor.BoundingXYVisitor; … … 128 128 resolution = mv.getDist100PixelText(); 129 129 130 startGrabberThreads(); 130 if(baseURL != null) 131 { 132 startGrabberThreads(); 133 } 131 134 if (baseURL != null && !baseURL.startsWith("html:") && !WMSGrabber.isUrlWithPatterns(baseURL)) { 132 135 if (!(baseURL.endsWith("&") || baseURL.endsWith("?"))) { … … 669 672 settingsChanged = true; 670 673 mv.repaint(); 674 if(baseURL != null) 675 { 676 startGrabberThreads(); 677 } 671 678 } 672 679 catch (Exception ex) {
Note:
See TracChangeset
for help on using the changeset viewer.