Added white background to splash frame - I think it looks nicer this way, and it may solve the X2Go issues too.

This commit is contained in:
CalDescent 2021-10-03 15:27:19 +01:00
parent fc8e38e862
commit 494cd0efff

View File

@ -30,9 +30,10 @@ public class SplashFrame {
public SplashPanel() { public SplashPanel() {
image = Gui.loadImage(defaultSplash); image = Gui.loadImage(defaultSplash);
setOpaque(false); setOpaque(true);
setLayout(new BoxLayout(this, BoxLayout.Y_AXIS)); setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
setBorder(null); setBorder(null);
setBackground(new Color(255, 255, 255));
// Add logo // Add logo
JLabel imageLabel = new JLabel(new ImageIcon(image)); JLabel imageLabel = new JLabel(new ImageIcon(image));