Changeset 13723 in osm for applications


Ignore:
Timestamp:
2009-02-14T13:34:22+01:00 (15 years ago)
Author:
stoecker
Message:

close #1652

Location:
applications/editors/josm/plugins/utilsplugin
Files:
4 added
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/utilsplugin/build.xml

    r13457 r13723  
    3232                <attribute name="Plugin-Description" value="Useful JOSM utilities"/>
    3333                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    34                 <attribute name="Plugin-Mainversion" value="1350"/>
     34                <attribute name="Plugin-Mainversion" value="1373"/>
    3535                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    3636                <attribute name="Author" value="Martijn van Oosterhout"/>
  • applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/UtilsPlugin.java

    r13497 r13723  
    2323public class UtilsPlugin extends Plugin {
    2424    JMenuItem SimplifyWay;
     25    JMenuItem JoinAreas;
    2526    JumpToAction JumpToAct = new JumpToAction();
    2627
    2728    public UtilsPlugin() {
    2829        SimplifyWay = MainMenu.add(Main.main.menu.toolsMenu, new SimplifyWayAction());
     30        JoinAreas = MainMenu.add(Main.main.menu.toolsMenu, new JoinAreasAction());
    2931        SimplifyWay.setEnabled(false);
    3032    }
     
    3436        if (oldFrame == null && newFrame != null) {
    3537            SimplifyWay.setEnabled(true);
     38            JoinAreas.setEnabled(true);
    3639            newFrame.statusLine.addMouseListener(JumpToAct);
    3740        }
Note: See TracChangeset for help on using the changeset viewer.