minor fix
This commit is contained in:
@ -49,8 +49,12 @@ public final class ScorePopup {
|
||||
int x = sx - fm.stringWidth(text) / 2;
|
||||
int baseline = sy; // tune if you want it a tad above the exact point
|
||||
|
||||
// g.setColor(Color.WHITE);
|
||||
g.setColor(Color.BLACK);
|
||||
g.drawString(text, x + 1, baseline + 1);
|
||||
g.setColor(Color.WHITE);
|
||||
g.drawString(text, x, baseline);
|
||||
g.drawString(text, x, baseline);
|
||||
|
||||
g.setComposite(oldComp);
|
||||
g.setFont(oldFont);
|
||||
|
||||
Reference in New Issue
Block a user