Changeset 27540 in osm for applications
- Timestamp:
- 2012-01-21T19:01:46+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/imageryadjust
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imageryadjust/build.xml
r27494 r27540 30 30 <project name="imageryadjust" default="dist" basedir="."> 31 31 <!-- enter the SVN commit message --> 32 <property name="commit.message" value="ImageryAdjust: show visible layers only"/>32 <property name="commit.message" value="ImageryAdjust: adjust single visible layer"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 34 <property name="plugin.main.version" value="4667"/> -
applications/editors/josm/plugins/imageryadjust/src/imageryadjust/ImageryAdjustMapMode.java
r27494 r27540 69 69 adjustingLayer.setVisible(true); 70 70 } 71 71 Main.map.mapView.addMouseListener(this); 72 72 Main.map.mapView.addMouseMotionListener(this); 73 73 } … … 146 146 */ 147 147 protected Layer askAdjustLayer(List<? extends Layer> adjustableLayers) { 148 if (adjustableLayers.size()==0) return null; 149 if (adjustableLayers.size()==1) return adjustableLayers.get(0); 148 150 JComboBox layerList = new JComboBox(); 149 151 layerList.setRenderer(new LayerListCellRenderer());
Note:
See TracChangeset
for help on using the changeset viewer.