Skip to content

Commit

Permalink
fixed head size compared to icons
Browse files Browse the repository at this point in the history
  • Loading branch information
xxAROX committed Jul 17, 2024
1 parent 198ffa1 commit 074a187
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ protected void init(JPanel contentPane) {

//show image left to name in 50x50px
JLabel image = new JLabel();
image.setIcon(new ImageIcon(xboxInfo.getHeadImage(true).getScaledInstance(30, 30, Image.SCALE_SMOOTH)));
image.setIcon(new ImageIcon(xboxInfo.getHeadImage(true).getScaledInstance(45, 45, Image.SCALE_SMOOTH)));
image.setVisible(true);
image.setFocusable(false);

Expand Down

0 comments on commit 074a187

Please sign in to comment.