Changeset 13723 in osm for applications/editors
- Timestamp:
- 2009-02-14T13:34:22+01:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin
- Files:
-
- 4 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin/build.xml
r13457 r13723 32 32 <attribute name="Plugin-Description" value="Useful JOSM utilities"/> 33 33 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 34 <attribute name="Plugin-Mainversion" value="13 50"/>34 <attribute name="Plugin-Mainversion" value="1373"/> 35 35 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 36 36 <attribute name="Author" value="Martijn van Oosterhout"/> -
applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/UtilsPlugin.java
r13497 r13723 23 23 public class UtilsPlugin extends Plugin { 24 24 JMenuItem SimplifyWay; 25 JMenuItem JoinAreas; 25 26 JumpToAction JumpToAct = new JumpToAction(); 26 27 27 28 public UtilsPlugin() { 28 29 SimplifyWay = MainMenu.add(Main.main.menu.toolsMenu, new SimplifyWayAction()); 30 JoinAreas = MainMenu.add(Main.main.menu.toolsMenu, new JoinAreasAction()); 29 31 SimplifyWay.setEnabled(false); 30 32 } … … 34 36 if (oldFrame == null && newFrame != null) { 35 37 SimplifyWay.setEnabled(true); 38 JoinAreas.setEnabled(true); 36 39 newFrame.statusLine.addMouseListener(JumpToAct); 37 40 }
Note:
See TracChangeset
for help on using the changeset viewer.