Ignore:
Timestamp:
2012-01-25T09:14:36+01:00 (13 years ago)
Author:
akks
Message:

Include Curves plugin by olejorgenb, see #7200

Location:
applications/editors/josm/plugins/utilsplugin2
Files:
6 added
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/utilsplugin2/README

    r25876 r27618  
    1212 * Selection actions (by akks)
    1313
     14 * Curves - Draw Arc (by olejorgenb)
     15
    1416 * Paste Relations, Replace Geometry and other actions (by Zverik)
    1517 
  • applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/UtilsPlugin2.java

    r27443 r27618  
    1212import utilsplugin2.selection.*;
    1313import utilsplugin2.dumbutils.*;
     14import utilsplugin2.curves.*;
    1415
    1516import org.openstreetmap.josm.Main;
     
    5152   
    5253    JMenuItem selectURL;
     54
     55    JMenuItem drawArc;
    5356   
    5457    public UtilsPlugin2(PluginInformation info) {
     
    8992       
    9093        selectURL = MainMenu.add(toolsMenu, new ChooseURLAction());
    91        
     94        drawArc = MainMenu.add(toolsMenu, new CurveAction());
    9295
    9396    }
     
    122125        selectURL.setEnabled(enabled);
    123126        allInside.setEnabled(enabled);
     127
     128        drawArc.setEnabled(enabled);
    124129    }
     130   
    125131    @Override
    126132    public PreferenceSetting getPreferenceSetting() {
Note: See TracChangeset for help on using the changeset viewer.