Ignore:
Timestamp:
2005-04-06T10:13:40+12:00 (19 years ago)
Author:
kjdon
Message:

made the move up and down buttons disabled to start with - cos nothing is initially selected in the list

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/cdm/SubcollectionIndexManager.java

    r9200 r9562  
    264264        JPanel movement_pane = new JPanel();
    265265        move_up_button = new JButton("", Utility.getImage("arrow-up.gif"));
    266         move_up_button.setEnabled(true);
     266        move_up_button.setEnabled(false);
    267267        move_up_button.setMnemonic(KeyEvent.VK_U);
    268268        Dictionary.registerBoth(move_up_button, "CDM.Move.Move_Up", "CDM.Move.Move_Up_Tooltip");
    269269
    270270        move_down_button = new JButton("", Utility.getImage("arrow-down.gif"));
    271         move_down_button.setEnabled(true);
     271        move_down_button.setEnabled(false);
    272272        move_down_button.setMnemonic(KeyEvent.VK_D);
    273273        Dictionary.registerBoth(move_down_button, "CDM.Move.Move_Down", "CDM.Move.Move_Down_Tooltip");
Note: See TracChangeset for help on using the changeset viewer.