Changeset 996 in josm
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MainMenu.java
r968 r996 22 22 import org.openstreetmap.josm.actions.CombineWayAction; 23 23 import org.openstreetmap.josm.actions.CopyAction; 24 import org.openstreetmap.josm.actions.CreateCircleAction; 24 25 import org.openstreetmap.josm.actions.DeleteAction; 25 26 import org.openstreetmap.josm.actions.DownloadAction; … … 102 103 public final JosmAction alignInLine = new AlignInLineAction(); 103 104 public final JosmAction alignInRect = new AlignInRectangleAction(); 105 public final JosmAction createCircle = new CreateCircleAction(); 104 106 public final JosmAction mergeNodes = new MergeNodesAction(); 105 107 public final JosmAction joinNodeWay = new JoinNodeWayAction(); … … 229 231 current.setAccelerator(alignInRect.shortCut); 230 232 toolsMenu.addSeparator(); 233 current = toolsMenu.add(createCircle); 234 current.setAccelerator(createCircle.shortCut); 235 toolsMenu.addSeparator(); 231 236 current = toolsMenu.add(mergeNodes); 232 237 current.setAccelerator(mergeNodes.shortCut);
Note:
See TracChangeset
for help on using the changeset viewer.