LibraryConfigGUI now starts reasonably sized.

This commit is contained in:
neviyn 2016-02-25 20:34:23 +00:00
parent 962846f397
commit 45efd42793

View File

@ -16,7 +16,7 @@ public class LibraryConfigGUI {
JFrame frame = new JFrame(); JFrame frame = new JFrame();
frame.setContentPane(createUI()); frame.setContentPane(createUI());
frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE); frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
frame.pack(); frame.setSize(300, 200);
frame.setVisible(true); frame.setVisible(true);
updateLibraryListContents(); updateLibraryListContents();
} }