Changeset 29226 in osm for applications/editors
- Timestamp:
- 2013-02-03T20:39:25+01:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin2
- Files:
-
- 3 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/build.xml
r28807 r29226 31 31 32 32 <!-- 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"/> 34 34 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 35 35 <property name="plugin.main.version" value="4980"/> -
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/UtilsPlugin2.java
r28028 r29226 53 53 JMenuItem wiki; 54 54 JMenuItem latlon; 55 JMenuItem pasteExtended; 55 56 56 57 JMenuItem replaceGeometry; … … 88 89 wiki = MainMenu.add(toolsMenu, new OpenPageAction()); 89 90 latlon = MainMenu.add(toolsMenu, new LatLonAction()); 91 pasteExtended = MainMenu.add(toolsMenu, new PasteTagsExtendedAction()); 90 92 91 93 JMenu selectionMenu = Main.main.menu.addMenu(marktr("Selection"), KeyEvent.VK_N, Main.main.menu.defaultMenuPos, "help"); … … 126 128 alignWayNodes.setEnabled(enabled); 127 129 splitOnIntersections.setEnabled(enabled); 130 pasteExtended.setEnabled(enabled); 128 131 wiki.setEnabled(enabled); 129 132
Note:
See TracChangeset
for help on using the changeset viewer.