- Timestamp:
- 2021-04-13T17:25:23+02:00 (4 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MainMenu.java
r17021 r17767 40 40 import org.openstreetmap.josm.actions.CopyAction; 41 41 import org.openstreetmap.josm.actions.CopyCoordinatesAction; 42 import org.openstreetmap.josm.actions.CopyUrlAction; 42 43 import org.openstreetmap.josm.actions.CreateCircleAction; 43 44 import org.openstreetmap.josm.actions.CreateMultipolygonAction; … … 215 216 /** Edit / Copy */ 216 217 public final CopyAction copy = new CopyAction(); 218 /** Edit / Copy URLs*/ 219 public final CopyUrlAction copyUrl = new CopyUrlAction(); 217 220 /** Edit / Copy Coordinates */ 218 221 public final JosmAction copyCoordinates = new CopyCoordinatesAction(); … … 768 771 add(editMenu, copy); 769 772 add(editMenu, copyCoordinates, true); 773 add(editMenu, copyUrl, true); 770 774 add(editMenu, paste); 771 775 add(editMenu, pasteAtSource, true);
Note:
See TracChangeset
for help on using the changeset viewer.