Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix window sizing (really should make the window scalable)
  • Loading branch information
dwm10005 committed Apr 22, 2015
1 parent 758396c commit cf7ca5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Main.java
Expand Up @@ -31,7 +31,7 @@ public class Main extends JFrame{

frame.add(container);
frame.pack();
frame.setSize(650,800);
frame.setSize(650,720);
frame.setVisible(true);

map.createMinion(MinionTypes.BASIC);
Expand Down

0 comments on commit cf7ca5d

Please sign in to comment.