Ignore:
Timestamp:
2013-11-14T15:38:21+13:00 (10 years ago)
Author:
ak19
Message:

GLI and GEMS Edit menu refers to Apple key on Macs instead of the Ctrl key, since Professor Witten and Jenny discovered that the Apple key now works on Mac machines in GLI (and the Ctrl doesn't work anymore).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/gli/src/org/greenstone/gatherer/gems/GEMS.java

    r13680 r28626  
    447447        edit = new JMenu();
    448448        edit.setText(Dictionary.get("Menu.Edit"));
    449        
    450         edit_cut = new JMenuItem(Dictionary.get("Menu.Edit_Cut"));
     449        String modkey = Utility.isMac() ? "apple" : "ctrl";
     450        edit_cut = new JMenuItem(Dictionary.get("Menu.Edit_Cut", modkey));
    451451        edit_cut.addActionListener(this);
    452452       
    453         edit_copy = new JMenuItem(Dictionary.get("Menu.Edit_Copy"));
     453        edit_copy = new JMenuItem(Dictionary.get("Menu.Edit_Copy", modkey));
    454454        edit_copy.addActionListener(this);
    455455       
    456         edit_paste = new JMenuItem(Dictionary.get("Menu.Edit_Paste"));
     456        edit_paste = new JMenuItem(Dictionary.get("Menu.Edit_Paste", modkey));
    457457        edit_paste.addActionListener(this);
    458458       
Note: See TracChangeset for help on using the changeset viewer.