minor fix

This commit is contained in:
Urban Modig
2025-09-06 21:57:25 +02:00
parent 5f653d3252
commit 32e884ec36

View File

@ -49,8 +49,12 @@ public final class ScorePopup {
int x = sx - fm.stringWidth(text) / 2; int x = sx - fm.stringWidth(text) / 2;
int baseline = sy; // tune if you want it a tad above the exact point 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.setColor(Color.WHITE);
g.drawString(text, x, baseline); g.drawString(text, x, baseline);
g.drawString(text, x, baseline);
g.setComposite(oldComp); g.setComposite(oldComp);
g.setFont(oldFont); g.setFont(oldFont);