summary refs log tree commit diff stats
path: root/src/com/fourisland/fourpuzzle/window/ChoiceWindow.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/fourisland/fourpuzzle/window/ChoiceWindow.java')
-rwxr-xr-xsrc/com/fourisland/fourpuzzle/window/ChoiceWindow.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/com/fourisland/fourpuzzle/window/ChoiceWindow.java b/src/com/fourisland/fourpuzzle/window/ChoiceWindow.java index 4754f67..19d53ac 100755 --- a/src/com/fourisland/fourpuzzle/window/ChoiceWindow.java +++ b/src/com/fourisland/fourpuzzle/window/ChoiceWindow.java
@@ -50,7 +50,6 @@ public class ChoiceWindow {
50 } 50 }
51 51
52 width += SPACER*2; 52 width += SPACER*2;
53 height -= SPACER;
54 53
55 cacheBase = new BufferedImage(Window.Default.getFullWidth(width), Window.Default.getFullHeight(height), BufferedImage.TYPE_INT_ARGB); 54 cacheBase = new BufferedImage(Window.Default.getFullWidth(width), Window.Default.getFullHeight(height), BufferedImage.TYPE_INT_ARGB);
56 Graphics2D g2 = cacheBase.createGraphics(); 55 Graphics2D g2 = cacheBase.createGraphics();
@@ -66,7 +65,7 @@ public class ChoiceWindow {
66 g2.setFont(g2.getFont().deriveFont(Font.BOLD)); 65 g2.setFont(g2.getFont().deriveFont(Font.BOLD));
67 66
68 int fh = g2.getFontMetrics().getHeight(); 67 int fh = g2.getFontMetrics().getHeight();
69 int ty = Window.Default.getTopY()+fh-SPACER+y; 68 int ty = Window.Default.getTopY()+fh-(SPACER/2)+y;
70 for (String choice : choices) 69 for (String choice : choices)
71 { 70 {
72 int fw = g2.getFontMetrics().stringWidth(choice); 71 int fw = g2.getFontMetrics().stringWidth(choice);