Skip to content

Commit

Permalink
Increase window size (#8057)
Browse files Browse the repository at this point in the history
Fixes 'chat' panel from being squished and appearing too small.
  • Loading branch information
DanVanAtta authored Nov 2, 2020
1 parent 891b1e6 commit 2e5fdad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
*/
public class MainPanel extends JPanel {
private static final long serialVersionUID = -5548760379892913464L;
private static final Dimension initialSize = new Dimension(800, 620);
private static final Dimension initialSize = new Dimension(900, 780);

private final JButton playButton =
new JButtonBuilder()
Expand Down

0 comments on commit 2e5fdad

Please sign in to comment.