Changeset 18398 in osm for applications/editors
- Timestamp:
- 2009-10-31T21:00:59+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/addrinterpolation
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/addrinterpolation/build.xml
r17883 r18398 91 91 <attribute name="Plugin-Description" value="Group common Address Interpolation inputs in a single dialog,"/> 92 92 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/AddrInterpolation"/> 93 <attribute name="Plugin-Mainversion" value="2 161"/>93 <attribute name="Plugin-Mainversion" value="2350"/> 94 94 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 95 95 </manifest> -
applications/editors/josm/plugins/addrinterpolation/src/org/openstreetmap/josm/plugins/AddrInterpolation/AddrInterpolationDialog.java
r17883 r18398 766 766 767 767 // De-select address interpolation way; leave street selected 768 addrInterpolationWay.setSelected(false); 768 DataSet currentDataSet = Main.main.getCurrentDataSet(); 769 if (currentDataSet != null) { 770 currentDataSet.clearSelection(addrInterpolationWay); 771 } 769 772 } 770 773
Note:
See TracChangeset
for help on using the changeset viewer.