Changeset 32467 in osm
- Timestamp:
- 2016-06-30T20:09:26+02:00 (8 years ago)
- Location:
- applications/editors/josm/plugins/gpxfilter
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/gpxfilter/build.xml
r31923 r32467 4 4 <property name="commit.message" value="GPXFilter: moved to Alt-Shift-X"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value=" 7001"/>6 <property name="plugin.main.version" value="10353"/> 7 7 8 8 <property name="plugin.author" value="Upliner"/> -
applications/editors/josm/plugins/gpxfilter/src/gpxfilter/AddEGpxLayerAction.java
r28341 r32467 22 22 @Override 23 23 protected void updateEnabledState() { 24 setEnabled(get CurrentDataSet() != null);24 setEnabled(getLayerManager().getEditDataSet() != null); 25 25 } 26 26 27 27 @Override 28 29 Main.main.addLayer(new EGpxLayer(Main.map.mapView.getRealBounds()));28 public void actionPerformed(ActionEvent arg0) { 29 getLayerManager().addLayer(new EGpxLayer(Main.map.mapView.getRealBounds())); 30 30 } 31 31 }
Note:
See TracChangeset
for help on using the changeset viewer.