Changeset 7163


Ignore:
Timestamp:
2004-03-31T10:18:11+12:00 (20 years ago)
Author:
kjdon
Message:

changed some shortcut keys for the right mouse click menu

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/gui/GatherPane.java

    r7152 r7163  
    571571            String[] args = new String[1];
    572572            args[0] = collection_tree.getSelectionDetails();
    573             show_metaaudit = new JMenuItem(Dictionary.get("Menu.Metadata_View", args), KeyEvent.VK_V);
     573            show_metaaudit = new JMenuItem(Dictionary.get("Menu.Metadata_View", args), KeyEvent.VK_A);
    574574            show_metaaudit.addActionListener(this);
    575575            add(show_metaaudit);
     
    592592            // You can unmap 1st level nodes.
    593593            if(root.getIndex(node) != -1) {
    594                 unmap = new JMenuItem(Dictionary.get("MappingPrompt.Unmap"), KeyEvent.VK_U);
     594                unmap = new JMenuItem(Dictionary.get("MappingPrompt.Unmap"), KeyEvent.VK_R);
    595595                unmap.addActionListener(this);
    596596                add(unmap);
     
    598598            // Or map any other level directories.
    599599            else {
    600                 map = new JMenuItem(Dictionary.get("MappingPrompt.Map"), KeyEvent.VK_M);
     600                map = new JMenuItem(Dictionary.get("MappingPrompt.Map"), KeyEvent.VK_S);
    601601                map.addActionListener(this);
    602602                add(map);
Note: See TracChangeset for help on using the changeset viewer.