Skip to content

Commit

Permalink
Update About dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanue1 committed Apr 9, 2019
1 parent 63bafdc commit 3ebe6ea
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions app/src/main/java/org/jd/gui/view/AboutView.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ public AboutView(JFrame mainFrame) {
subpanel.setLayout(new BorderLayout());
JLabel logo = new JLabel(new ImageIcon(SwingUtil.getImage("/org/jd/gui/images/jd_icon_64.png")));
logo.setBorder(new EmptyBorder(15, 15, 15, 15));
logo.setBackground(Color.GRAY);
logo.setOpaque(true);
subpanel.add(logo, BorderLayout.WEST);
Box subvbox = Box.createVerticalBox();
subvbox.setBorder(new EmptyBorder(15,0,15,15));
Expand All @@ -66,8 +64,6 @@ public AboutView(JFrame mainFrame) {
subsubpanel.setLayout(new GridLayout(2,2));
subsubpanel.setOpaque(false);
subsubpanel.setBorder(new EmptyBorder(5,10,5,5));
subsubpanel.setBackground(Color.YELLOW);
subsubpanel.setOpaque(true);

String jdGuiVersion = "SNAPSHOT";
String jdCoreVersion = "SNAPSHOT";
Expand Down Expand Up @@ -105,11 +101,7 @@ public AboutView(JFrame mainFrame) {
hbox = Box.createHorizontalBox();
hbox.add(new JLabel("Copyright © 2008-2019 Emmanuel Dupuy"));
hbox.add(Box.createHorizontalGlue());
hbox.setBackground(Color.RED);
hbox.setOpaque(true);
subvbox.add(hbox);
subvbox.setBackground(Color.GREEN);
subvbox.setOpaque(true);

vbox.add(Box.createVerticalStrut(10));

Expand Down

0 comments on commit 3ebe6ea

Please sign in to comment.