Changeset 11033


Ignore:
Timestamp:
2006-01-13T14:31:52+13:00 (18 years ago)
Author:
kjdon
Message:

changed the split to be horizontal, and made the contents a bit bigger

File:
1 edited

Legend:

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

    r10647 r11033  
    6363{
    6464    /** The size of the frame */
    65     static private final Dimension SIZE = new Dimension(760, 560);
     65    static private final Dimension SIZE = new Dimension(800, 560);
    6666
    6767    static private HelpFrame self = null;
     
    7676    static private JSplitPane split_pane = null;
    7777
    78 
    7978    public HelpFrame()
    8079    {
     
    9594    // Creation
    9695    JPanel content_pane = (JPanel) this.getContentPane();
    97     split_pane = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
     96    split_pane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
    9897    JScrollPane help_contents_tree_scroll = new JScrollPane(help_contents_tree);
    9998    JScrollPane help_pane_scroll = new JScrollPane(help_pane);
     
    115114    }
    116115
    117 
    118116    public void destroy()
    119117    {
     
    214212    // Make the help frame visible
    215213    setVisible(true);
    216     split_pane.setDividerLocation(0.2);
     214    split_pane.setDividerLocation(0.4);
    217215    }
    218216
Note: See TracChangeset for help on using the changeset viewer.