Skip to content

Commit

Permalink
Adjusted some of the version selector's default sizes to better handl…
Browse files Browse the repository at this point in the history
…e resize on a slow computer
  • Loading branch information
crbednarz committed Dec 28, 2013
1 parent 4f6f186 commit a5d9c71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/amidst/gui/version/VersionSelectWindow.java
Expand Up @@ -66,7 +66,7 @@ public VersionSelectWindow() {
final JLabel titleLabel = new JLabel("Please select a Minecraft version:", JLabel.CENTER);
titleLabel.setFont(new Font("arial", Font.BOLD, 16));

add(titleLabel, "h 20!,w :300:, growx, pushx, wrap");
add(titleLabel, "h 20!,w :400:, growx, pushx, wrap");

final VersionSelectPanel versionSelector = new VersionSelectPanel();

Expand All @@ -93,7 +93,7 @@ public void run() {
versionSelector.setEmptyMessage("Scanning...");

JScrollPane scrollPane = new JScrollPane(versionSelector);
add(scrollPane, "grow, push, h 40::");
add(scrollPane, "grow, push, h 80::");
pack();
setLocation(200, 200);
setVisible(true);
Expand Down

0 comments on commit a5d9c71

Please sign in to comment.