Changeset 4603


Ignore:
Timestamp:
2003-06-12T13:48:32+12:00 (21 years ago)
Author:
mdewsnip
Message:

Changed the order of the items in the edit menu to be standard: cut, copy, paste.

File:
1 edited

Legend:

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

    r4547 r4603  
    147147    this.add(Box.createHorizontalStrut(15));
    148148    this.add(edit);
    149 
    150     edit_copy = new JMenuItem(get("Edit_Copy") + " (ctrl-c)", KeyEvent.VK_C);
    151     edit_copy.addActionListener(Gatherer.g_man);
    152149         
    153150    edit_cut = new JMenuItem(get("Edit_Cut") + " (ctrl-x)", KeyEvent.VK_X);
    154151    edit_cut.addActionListener(Gatherer.g_man);
    155152
     153    edit_copy = new JMenuItem(get("Edit_Copy") + " (ctrl-c)", KeyEvent.VK_C);
     154    edit_copy.addActionListener(Gatherer.g_man);
     155
    156156    edit_paste = new JMenuItem(get("Edit_Paste") + " (ctrl-v)", KeyEvent.VK_V);
    157157    edit_paste.addActionListener(Gatherer.g_man);
     
    169169    edit_replace.addActionListener(Gatherer.g_man);
    170170
     171    edit.add(edit_cut);
    171172    edit.add(edit_copy);
    172     edit.add(edit_cut);
    173173    edit.add(edit_paste);
    174174    //edit.add(new JSeparator());
Note: See TracChangeset for help on using the changeset viewer.