Skip to content

Commit

Permalink
Readjusted minecraft Skin and Version, Server, Ram labels
Browse files Browse the repository at this point in the history
  • Loading branch information
saschb2b committed Apr 4, 2014
1 parent 4653ae4 commit 4346623
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/de/craften/craftenlauncher/GUI/panel/Profile.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public void addCloseButton() {
}

public void addAvatar() {
_pAvatar = new Point(18, this.getHeight() / 4 + 5);
_pAvatar = new Point(18, this.getHeight() / 4 + 20);
}

private void addProfileInformation() {
Expand All @@ -104,7 +104,7 @@ private void addProfileInformation() {
_playerName.setForeground(Color.WHITE);
add(_playerName);

_skin = new MinecraftSkin(new Dimension(250,250));
_skin = new MinecraftSkin(new Dimension(300,300));
_skin.setLocation(_pAvatar);
add(_skin);

Expand Down Expand Up @@ -153,7 +153,7 @@ public void mouseExited(MouseEvent e) {
e.printStackTrace();
}
_cbVersions.setSize(100, 20);
_cbVersions.setLocation(this.getWidth() / 2 - _cbVersions.getWidth() / 2, this.getHeight() / 3);
_cbVersions.setLocation(this.getWidth() / 4 , this.getHeight() / 3);
_cbVersions.setUI(CL_FlatComboBoxUI.createUI(_cbVersions));
_cbVersions.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Expand Down

0 comments on commit 4346623

Please sign in to comment.