Changeset 29226 in osm for applications/editors


Ignore:
Timestamp:
2013-02-03T20:39:25+01:00 (12 years ago)
Author:
akks
Message:

Utilsplugin2: added pasting tags from text clipboard

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

Legend:

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

    r28807 r29226  
    3131
    3232    <!-- enter the SVN commit message -->
    33     <property name="commit.message" value="Utilsplugin2: SplitObjects exception fix when closed way only is selected"/>
     33    <property name="commit.message" value="Utilsplugin2: added pasting tags from text clipboard"/>
    3434    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    3535    <property name="plugin.main.version" value="4980"/>
  • applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/UtilsPlugin2.java

    r28028 r29226  
    5353    JMenuItem wiki;
    5454    JMenuItem latlon;
     55    JMenuItem pasteExtended;
    5556   
    5657    JMenuItem replaceGeometry;
     
    8889        wiki = MainMenu.add(toolsMenu, new OpenPageAction());
    8990        latlon = MainMenu.add(toolsMenu, new LatLonAction());
     91        pasteExtended = MainMenu.add(toolsMenu, new PasteTagsExtendedAction());
    9092
    9193        JMenu selectionMenu = Main.main.menu.addMenu(marktr("Selection"), KeyEvent.VK_N, Main.main.menu.defaultMenuPos, "help");
     
    126128        alignWayNodes.setEnabled(enabled);
    127129        splitOnIntersections.setEnabled(enabled);
     130        pasteExtended.setEnabled(enabled);
    128131        wiki.setEnabled(enabled);
    129132
Note: See TracChangeset for help on using the changeset viewer.