window size (i thought i fixed this?)

This commit is contained in:
Downforce Agent 2024-07-21 15:51:31 -05:00
parent 47159b6efb
commit 862c5d62a4

View File

@ -114,7 +114,7 @@ public class Suggs implements ActionListener, ListSelectionListener {
frame.add(frameContainer); // initialize window contents -- will be handled by IntelliJ IDEA frame.add(frameContainer); // initialize window contents -- will be handled by IntelliJ IDEA
frame.setSize(700, 400); frame.setSize(700, 400);
frame.setMinimumSize(new Dimension(650,280)); frame.setMinimumSize(new Dimension(700,400));
frame.setTitle("Soundtrack Mod Generator"); frame.setTitle("Soundtrack Mod Generator");
frame.setResizable(true); frame.setResizable(true);
frame.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE); frame.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);