// The width of the help text should not be more than the chooser width.
// The height is computed by the JTextArea based on the number of rows needed for the text.
Dimension chooserSize = chooserPanel.getPreferredSize();
helpTextArea.setPreferredSize(new Dimension(chooserSize.width, 0));
mainPanel = new JPanel(new VerticalFlowLayout(VerticalFlowLayout.TOP, 0, 0, true, false));
mainPanel.add(chooserPanel);
mainPanel.add(helpTextArea);
setComponentBackground(mainPanel, SkyTheme.COLOR_BACKGROUND_LIGHT);
// Wrap it all in a scroll pane because the chooser requires at least a height of 256