fix WinLoseFrame so skinned buttons are not cut off on Mac OS X.

This commit is contained in:
slapshot5
2011-10-08 10:28:32 +00:00
parent 62a3e59fbd
commit dd74417a19

View File

@@ -77,8 +77,9 @@ public class WinLoseFrame extends JFrame {
getContentPane().add(contentPanel); getContentPane().add(contentPanel);
//Footer should be at least 150 to keep buttons in-pane on Mac OS X //Footer should be at least 150 to keep buttons in-pane on Mac OS X
//it needs to be > 175 now that skinning is used
int HEAD_HEIGHT = 150; int HEAD_HEIGHT = 150;
int FOOT_HEIGHT = 150; int FOOT_HEIGHT = 182;
int FRAME_WIDTH_SMALL = 300; int FRAME_WIDTH_SMALL = 300;
int FRAME_WIDTH_BIG = 600; int FRAME_WIDTH_BIG = 600;