1
0
mirror of https://github.com/SKCraft/Launcher.git synced 2024-11-24 12:16:28 +01:00

Make the split pane opaque on the launcher frame.

This commit is contained in:
sk89q 2015-02-20 01:39:34 -08:00
parent b4926c0826
commit ed4d6d2875

View File

@ -95,6 +95,7 @@ public class LauncherFrame extends JFrame {
launchButton.setFont(launchButton.getFont().deriveFont(Font.BOLD)); launchButton.setFont(launchButton.getFont().deriveFont(Font.BOLD));
splitPane.setDividerLocation(200); splitPane.setDividerLocation(200);
splitPane.setDividerSize(4); splitPane.setDividerSize(4);
splitPane.setOpaque(false);
add(splitPane, "grow, wrap, span 5, gapbottom unrel"); add(splitPane, "grow, wrap, span 5, gapbottom unrel");
SwingHelper.flattenJSplitPane(splitPane); SwingHelper.flattenJSplitPane(splitPane);
add(refreshButton); add(refreshButton);