Changeset 4633


Ignore:
Timestamp:
2003-06-13T10:04:08+12:00 (21 years ago)
Author:
mdewsnip
Message:

Changed the background of the text fields and text areas to be white (editable).

File:
1 edited

Legend:

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

    r4589 r4633  
    251251        central_pane = new JPanel();
    252252        collection_extra = new JTextArea();
     253        collection_extra.setBackground(Color.white);
    253254        collection_extra_inner_pane = new JPanel();
    254255        collection_extra_label = new JLabel(get("CDM.General.Collection_Extra"));
     
    267268        }
    268269        collection_name = new JTextField();
     270        collection_name.setBackground(Color.white);
    269271        collection_name_inner_pane = new JPanel();
    270272        collection_name_label = new JLabel(get("CDM.General.Collection_Name"));
     
    283285        }
    284286        icon_collection = new JTextField();
     287        icon_collection.setBackground(Color.white);
    285288        icon_collection_inner_pane = new JPanel();
    286289        icon_collection_label = new JLabel(get("CDM.General.Icon_Collection"));
     
    299302        }
    300303        icon_collection_small = new JTextField();
     304        icon_collection_small.setBackground(Color.white);
    301305        icon_collection_small_inner_pane = new JPanel();
    302306        icon_collection_small_label = new JLabel(get("CDM.General.Icon_Collection_Small"));
Note: See TracChangeset for help on using the changeset viewer.