Ignore:
Timestamp:
2009-01-22T12:15:09+13:00 (15 years ago)
Author:
kjdon
Message:

a few more mods for RTL gli

File:
1 edited

Legend:

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

    r18412 r18414  
    342342        // the checkbox component
    343343        enabled = new JCheckBox(entry.name);
     344        enabled.setComponentOrientation(Dictionary.getOrientation());
    344345        enabled.setSelected(entry.selected);
    345346        enabled.setOpaque(false);
    346347        enabled.setPreferredSize(LABEL_SIZE);
    347348        enabled.setToolTipText(entry.tooltip);
    348         add(enabled, BorderLayout.WEST);
     349        add(enabled, BorderLayout.LINE_START);
    349350           
    350351        // the drop down list component
     
    354355        }
    355356        value_control = new GComboBox(option_list.toArray(), false, false);
     357        value_control.setComponentOrientation(Dictionary.getOrientation());
    356358        selectValue((JComboBox)value_control, entry.type);
    357359        value_control.setOpaque(true);         
Note: See TracChangeset for help on using the changeset viewer.