Ignore:
Timestamp:
2014-03-22T14:36:02+01:00 (11 years ago)
Author:
akks
Message:

[josm_utilsplugin2]: alpha version of multitagger ctrl-t

Location:
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2
Files:
4 added
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/UtilsPlugin2.java

    r30200 r30337  
    33
    44
     5import com.sun.org.apache.xpath.internal.operations.Mult;
    56import javax.swing.JMenu;
    67import javax.swing.JMenuItem;
     
    2829import org.openstreetmap.josm.plugins.utilsplugin2.customurl.UtilsPluginPreferences;
    2930import org.openstreetmap.josm.plugins.utilsplugin2.latlon.LatLonAction;
     31import org.openstreetmap.josm.plugins.utilsplugin2.multitagger.MultiTagAction;
    3032import org.openstreetmap.josm.plugins.utilsplugin2.replacegeometry.ReplaceGeometryAction;
    3133import org.openstreetmap.josm.plugins.utilsplugin2.search.UtilsUnaryMatchFactory;
     
    6365    JMenuItem wiki;
    6466    JMenuItem latlon;
     67    JMenuItem multiTag;
    6568   
    6669    JMenuItem replaceGeometry;
     
    119122       
    120123        selectURL = MainMenu.add(dataMenu, new ChooseURLAction());
    121        
     124        multiTag = MainMenu.add(dataMenu, new MultiTagAction());
     125       
    122126        // register search operators
    123127        SearchCompiler.addMatchFactory(new UtilsUnaryMatchFactory());
     
    155159
    156160        drawArc.setEnabled(enabled);
     161        multiTag.setEnabled(enabled);
    157162    }
    158163   
Note: See TracChangeset for help on using the changeset viewer.