Changeset 18387 in osm
- Timestamp:
- 2009-10-31T09:07:06+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin/build.xml
r18297 r18387 25 25 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 26 26 <attribute name="Plugin-Description" value="Several utilities that make your life easier: e.g. simplify way, join areas, jump to position."/> 27 <attribute name="Plugin-Mainversion" value="23 27"/>27 <attribute name="Plugin-Mainversion" value="2355"/> 28 28 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 29 29 </manifest> -
applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/JoinAreasAction.java
r17550 r18387 170 170 if(joinAreas(selWays[0], selWays[ways == 2 ? 1 : 0])) { 171 171 Main.map.mapView.repaint(); 172 DataSet.fireSelectionChanged(Main.main.getCurrentDataSet().getSelected()); 172 DataSet ds = Main.main.getCurrentDataSet(); 173 ds.fireSelectionChanged(); 173 174 } else 174 175 JOptionPane.showMessageDialog(Main.parent, tr("No intersection found. Nothing was changed."));
Note:
See TracChangeset
for help on using the changeset viewer.