forked from Qortal/qortal
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:
parent
fc8e38e862
commit
494cd0efff
@ -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));
|
||||||
|
Loading…
Reference in New Issue
Block a user