Changeset 29742 in osm for applications
- Timestamp:
- 2013-07-05T18:34:13+02:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin2
- Files:
-
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/build.xml
r29615 r29742 3 3 4 4 <!-- enter the SVN commit message --> 5 <property name="commit.message" value=" Utilsplugin2: validation for pasting tags"/>5 <property name="commit.message" value="[josm_utilsplugin2]: pasting tags is in core long ago. Please update you ancient JOSM :)"/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 7 <property name="plugin.main.version" value="4980"/> -
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/UtilsPlugin2.java
r29226 r29742 53 53 JMenuItem wiki; 54 54 JMenuItem latlon; 55 JMenuItem pasteExtended;56 55 57 56 JMenuItem replaceGeometry; … … 89 88 wiki = MainMenu.add(toolsMenu, new OpenPageAction()); 90 89 latlon = MainMenu.add(toolsMenu, new LatLonAction()); 91 pasteExtended = MainMenu.add(toolsMenu, new PasteTagsExtendedAction());92 90 93 91 JMenu selectionMenu = Main.main.menu.addMenu(marktr("Selection"), KeyEvent.VK_N, Main.main.menu.defaultMenuPos, "help"); … … 128 126 alignWayNodes.setEnabled(enabled); 129 127 splitOnIntersections.setEnabled(enabled); 130 pasteExtended.setEnabled(enabled);131 128 wiki.setEnabled(enabled); 132 129
Note:
See TracChangeset
for help on using the changeset viewer.