Changeset 5370


Ignore:
Timestamp:
2003-08-29T16:26:51+12:00 (21 years ago)
Author:
jmt12
Message:

Fixed the 'too-wide' problem on the connection tab

File:
1 edited

Legend:

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

    r5367 r5370  
    5252
    5353    static final Dimension LABEL_SIZE = new Dimension(150, 25);
    54     static final Dimension ROW_SIZE = new Dimension(450, 25);
    55     static final Dimension SIZE = new Dimension(450, 345);
     54    static final Dimension ROW_SIZE = new Dimension(640, 25);
     55    static final Dimension SIZE = new Dimension(640, 345);
    5656    static final String TRUE = "true";
    5757
     
    158158
    159159    connection_pane.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
     160    connection_pane.setLayout(new GridLayout(8,1,0,2));
    160161    connection_pane.add(library_path_pane);
    161162    connection_pane.add(use_proxy_checkbox);
     
    171172    // Build the model of available languages
    172173    ArrayList dictionary_model = new ArrayList();
    173 
    174     Locale french = new Locale("fr","FR");
    175     System.err.println("French locale: " + french);
    176 
    177174
    178175    dictionary_model.add(new DictionaryEntry(Locale.ENGLISH));
Note: See TracChangeset for help on using the changeset viewer.