Ignore:
Timestamp:
2011-04-27T20:10:07+02:00 (14 years ago)
Author:
akks
Message:

Added Undo Selection action Ctrl-Shift-Z, it selects next set from the selection history. Josm 4064 is needed

Location:
applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/UtilsPlugin2.java

    r25898 r25913  
    2626    JMenuItem intWays;
    2727    JMenuItem intWaysR;
     28    JMenuItem undoSelection;
    2829
    2930    JMenuItem replaceGeometry;
     
    6061        selModifiedNodes = MainMenu.add(selectionMenu, new SelectModNodesAction());
    6162        selModifiedWays = MainMenu.add(selectionMenu, new SelectModWaysAction());
     63        undoSelection = MainMenu.add(selectionMenu, new UndoSelectionAction());
    6264    }
    6365
     
    8587        selModifiedNodes.setEnabled(enabled);
    8688        selModifiedWays.setEnabled(enabled);
     89        undoSelection.setEnabled(enabled);
    8790    }
    8891}
Note: See TracChangeset for help on using the changeset viewer.