@@ -47,8 +47,6 @@ public AboutView(JFrame mainFrame) {
4747 subpanel .setLayout (new BorderLayout ());
4848 JLabel logo = new JLabel (new ImageIcon (SwingUtil .getImage ("/org/jd/gui/images/jd_icon_64.png" )));
4949 logo .setBorder (new EmptyBorder (15 , 15 , 15 , 15 ));
50- logo .setBackground (Color .GRAY );
51- logo .setOpaque (true );
5250 subpanel .add (logo , BorderLayout .WEST );
5351 Box subvbox = Box .createVerticalBox ();
5452 subvbox .setBorder (new EmptyBorder (15 ,0 ,15 ,15 ));
@@ -66,8 +64,6 @@ public AboutView(JFrame mainFrame) {
6664 subsubpanel .setLayout (new GridLayout (2 ,2 ));
6765 subsubpanel .setOpaque (false );
6866 subsubpanel .setBorder (new EmptyBorder (5 ,10 ,5 ,5 ));
69- subsubpanel .setBackground (Color .YELLOW );
70- subsubpanel .setOpaque (true );
7167
7268 String jdGuiVersion = "SNAPSHOT" ;
7369 String jdCoreVersion = "SNAPSHOT" ;
@@ -105,11 +101,7 @@ public AboutView(JFrame mainFrame) {
105101 hbox = Box .createHorizontalBox ();
106102 hbox .add (new JLabel ("Copyright © 2008-2019 Emmanuel Dupuy" ));
107103 hbox .add (Box .createHorizontalGlue ());
108- hbox .setBackground (Color .RED );
109- hbox .setOpaque (true );
110104 subvbox .add (hbox );
111- subvbox .setBackground (Color .GREEN );
112- subvbox .setOpaque (true );
113105
114106 vbox .add (Box .createVerticalStrut (10 ));
115107
0 commit comments