Changeset 14249


Ignore:
Timestamp:
2007-07-16T10:09:45+12:00 (17 years ago)
Author:
xiao
Message:

disable the menu items file and edit from the moment of their creation and later enable them until everything is settled (loading collection from the last session etc.).

File:
1 edited

Legend:

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

    r14230 r14249  
    8888    {
    8989    file = new JMenu();
     90    file.setEnabled(false);
    9091    file.setText(Dictionary.get("Menu.File"));
    9192   
     
    141142    // Edit menu
    142143    edit = new JMenu();
     144    edit.setEnabled(false);
    143145    edit.setText(Dictionary.get("Menu.Edit"));
    144146             
Note: See TracChangeset for help on using the changeset viewer.