From 0610028e79eda1281969a2f3aaa43bdbdc767c21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Wed, 4 Feb 2026 19:52:31 +0100 Subject: [PATCH] smaller font in splashscreen --- src/com/jpexs/build/SplashScreenGenerator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/jpexs/build/SplashScreenGenerator.java b/src/com/jpexs/build/SplashScreenGenerator.java index e4bb73dcb..91711ca6a 100644 --- a/src/com/jpexs/build/SplashScreenGenerator.java +++ b/src/com/jpexs/build/SplashScreenGenerator.java @@ -38,7 +38,7 @@ public class SplashScreenGenerator { BufferedImage img = ImageIO.read(new File("graphics/splash3.png")); Graphics2D g = img.createGraphics(); g.setColor(new Color(0, 100, 255, 128)); - g.setFont(new Font("Arial", Font.BOLD, 25)); + g.setFont(new Font("Arial", Font.BOLD, 16)); int sw = g.getFontMetrics().stringWidth(ApplicationInfo.version); int x = 190; int y = 170;