- Timestamp:
- 2020-06-21T20:03:01+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
r16553 r16701 64 64 import org.openstreetmap.josm.actions.InfoAction; 65 65 import org.openstreetmap.josm.actions.InfoWebAction; 66 import org.openstreetmap.josm.actions.InvertSelectionAction; 66 67 import org.openstreetmap.josm.actions.JoinAreasAction; 67 68 import org.openstreetmap.josm.actions.JoinNodeWayAction; … … 306 307 /** Selection / Unselect All */ 307 308 public final UnselectAllAction unselectAll = new UnselectAllAction(); 309 /** Selection / Invert Selection */ 310 public final InvertSelectionAction invertSelection = new InvertSelectionAction(); 308 311 /** Selection / Non-branching way sequences */ 309 312 public final SelectNonBranchingWaySequencesAction nonBranchingWaySequences = new SelectNonBranchingWaySequencesAction(); … … 845 848 add(selectionMenu, selectAll); 846 849 add(selectionMenu, unselectAll); 850 add(selectionMenu, invertSelection, true); 847 851 add(selectionMenu, nonBranchingWaySequences); 848 852
Note:
See TracChangeset
for help on using the changeset viewer.