Ignore:
Timestamp:
2011-04-27T20:10:07+02:00 (13 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
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/utilsplugin2/build.xml

    r25817 r25913  
    3333    <property name="commit.message" value="extend selection" />
    3434    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    35     <property name="plugin.main.version" value="3835" />
     35    <property name="plugin.main.version" value="4064" />
    3636
    3737
  • 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.