Changeset 4666


Ignore:
Timestamp:
2003-06-13T17:38:25+12:00 (21 years ago)
Author:
mdewsnip
Message:

Changed the background colour of the filters to be "color.editable".

File:
1 edited

Legend:

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

    r4616 r4666  
    288288    // Change the default colours of this filters combobox.
    289289    GComboBox fcb = workspace_filter.getComboBox();
    290     fcb.setBackgroundNonSelectionColor(Color.white);
     290    fcb.setBackgroundNonSelectionColor(Gatherer.config.getColor("coloring.editable", false));
    291291    fcb.setTextNonSelectionColor(Gatherer.config.getColor("coloring.workspace_tree_foreground", false));
    292292    fcb.setBackgroundSelectionColor(Gatherer.config.getColor("coloring.workspace_selection_background", false));
     
    339339    // Change the default colours of this filters combobox.
    340340    fcb = collection_filter.getComboBox();
    341     fcb.setBackgroundNonSelectionColor(Color.white);
     341    fcb.setBackgroundNonSelectionColor(Gatherer.config.getColor("coloring.editable", false));
    342342    fcb.setTextNonSelectionColor(Gatherer.config.getColor("coloring.collection_tree_foreground", false));
    343343    fcb.setBackgroundSelectionColor(Gatherer.config.getColor("coloring.collection_selection_background", false));
Note: See TracChangeset for help on using the changeset viewer.