Ignore:
Timestamp:
2023-02-21T17:35:22+13:00 (14 months ago)
Author:
davidb
Message:

Newer version of setSize() introduced to support the new init sequence for webSwing GLI that requires login first before GLI window displayed; Fine-tuning of colours used.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/gli/src/org/greenstone/gatherer/download/DownloadScrollPane.java

    r31880 r37337  
    7373    job = null;
    7474    job_queue = new Vector();
     75
     76    Color colour_ctb = Configuration.getColor("coloring.collection_tree_background", false);
     77
    7578    filler_pane = new JPanel();
     79    filler_pane.setBackground(colour_ctb);
     80
    7681    list_pane = new JPanel();
    7782    list_pane.setLayout(new BoxLayout(list_pane, BoxLayout.Y_AXIS));
     83    list_pane.setBackground(colour_ctb);
     84   
    7885    list_scroll = new JScrollPane(list_pane);
    7986    }
Note: See TracChangeset for help on using the changeset viewer.