Ignore:
Timestamp:
2003-06-25T14:24:42+12:00 (21 years ago)
Author:
jmt12
Message:

bug#2030157: Fixed editable, and added the idea of editable foreground and background

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/valuetree/GValueTree.java

    r4686 r4803  
    8989    JPanel value_field_pane = new JPanel();
    9090    value = new JTextField();
    91     value.setBackground(Gatherer.config.getColor("coloring.editable", false));
     91    value.setBackground(Gatherer.config.getColor("coloring.editable_background", false));
     92    value.setForeground(Gatherer.config.getColor("coloring.editable_foreground", false));
    9293    value.setPreferredSize(new Dimension(413, 24));
    9394    value.getDocument().addDocumentListener(new DocumentListenerImpl());
Note: See TracChangeset for help on using the changeset viewer.