Changeset 15841 in osm
- Timestamp:
- 2009-06-11T00:14:14+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/WMSAdjustAction.java
r13497 r15841 33 33 public WMSAdjustAction(MapFrame mapFrame) { 34 34 super(tr("Adjust WMS"), "adjustxywms", 35 tr("Adjust the position of the WMS layer "), mapFrame,35 tr("Adjust the position of the WMS layer (raster images only)"), mapFrame, 36 36 ImageProvider.getCursor("normal", "move")); 37 37 } … … 82 82 mode = Mode.moveXY; 83 83 for (Layer layer : Main.map.mapView.getAllLayers()) { 84 if (layer.visible && layer instanceof WMSLayer ) {84 if (layer.visible && layer instanceof WMSLayer && ((WMSLayer)layer).isRaster()) { 85 85 prevEastNorth = Main.map.mapView.getEastNorth(e.getX(), e.getY()); 86 86 selectedLayer = ((WMSLayer) layer);
Note:
See TracChangeset
for help on using the changeset viewer.