Changeset 5219


Ignore:
Timestamp:
2003-08-19T17:22:10+12:00 (21 years ago)
Author:
mdewsnip
Message:

Changed size of DoubleImageButtons to be consistent with others in the CDM.

File:
1 edited

Legend:

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

    r5211 r5219  
    566566
    567567        JPanel movement_pane = new JPanel();
     568
    568569        move_up_button = new DoubleImageButton(get("CDM.Move.Move_Up"), Utility.getImage("arrow-up.gif"), Utility.getImage("arrow-up-disabled.gif"));
    569570        move_up_button.setEnabled(false);
    570571        move_up_button.setMnemonic(KeyEvent.VK_U);
    571         move_up_button.setPreferredSize(Utility.BUTTON_SIZE);
     572        move_up_button.setPreferredSize(Utility.DOUBLE_IMAGE_BUTTON_SIZE);
     573
    572574        move_down_button = new DoubleImageButton(get("CDM.Move.Move_Down"), Utility.getImage("arrow-down.gif"), Utility.getImage("arrow-down-disabled.gif"));
    573575        move_down_button.setEnabled(false);
    574576        move_down_button.setMnemonic(KeyEvent.VK_D);
    575         move_down_button.setPreferredSize(Utility.BUTTON_SIZE);
     577        move_down_button.setPreferredSize(Utility.DOUBLE_IMAGE_BUTTON_SIZE);
    576578
    577579        JPanel index_pane = new JPanel();
Note: See TracChangeset for help on using the changeset viewer.