Changeset 32324 in osm for applications/editors/josm/plugins/measurement
- Timestamp:
- 2016-06-19T13:49:27+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/measurement
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/measurement/build.xml
r31926 r32324 4 4 <property name="commit.message" value="recompile dure to core change"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value=" 8554"/>6 <property name="plugin.main.version" value="10369"/> 7 7 <property name="plugin.canloadatruntime" value="true"/> 8 8 -
applications/editors/josm/plugins/measurement/src/org/openstreetmap/josm/plugins/measurement/MeasurementDialog.java
r32152 r32324 96 96 { 97 97 putValue(NAME, tr("Reset")); 98 putValue(SMALL_ICON,ImageProvider.get("dialogs", "select"));98 new ImageProvider("dialogs", "select").getResource().attachImageIcon(this, true); 99 99 putValue(SHORT_DESCRIPTION, tr("Reset current measurement results and delete measurement path.")); 100 100 putValue("help", HelpUtil.ht("/Dialog/Measurement#Reset")); -
applications/editors/josm/plugins/measurement/src/org/openstreetmap/josm/plugins/measurement/MeasurementLayer.java
r30737 r32324 234 234 Box panel = Box.createVerticalBox(); 235 235 final JList<GpxLayer> layerList = new JList<>(model); 236 Collection<Layer> data = Main. map.mapView.getAllLayers();236 Collection<Layer> data = Main.getLayerManager().getLayers(); 237 237 Layer lastLayer = null; 238 238 int layerCnt = 0;
Note:
See TracChangeset
for help on using the changeset viewer.