Skip to content

Commit

Permalink
Modified size of options dialog, and made it resizable.
Browse files Browse the repository at this point in the history
  • Loading branch information
brickviking authored and sk89q committed Mar 5, 2013
1 parent 06a8191 commit c88169e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/sk89q/mclauncher/OptionsDialog.java
Expand Up @@ -75,10 +75,10 @@ public OptionsDialog(LauncherFrame owner, Configuration configuration,
super(owner, "Launcher Options", true);

this.options = options;
setResizable(false);
setResizable(true);
buildUI();
pack();
setSize(400, 500);
setSize(400, 540);
setLocationRelativeTo(owner);

tabs.setSelectedIndex(initialTab);
Expand Down

0 comments on commit c88169e

Please sign in to comment.