From 2141762ab6deea0af08796db6824ca11cdf34482 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leif-J=C3=B6ran=20Olsson?= Date: Mon, 25 Aug 2014 18:51:23 +0200 Subject: [PATCH] Fixing the version feature on splash-screen --- src/org/exist/launcher/SplashScreen.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/exist/launcher/SplashScreen.java b/src/org/exist/launcher/SplashScreen.java index 4f713bc498d..5f40fb424ab 100644 --- a/src/org/exist/launcher/SplashScreen.java +++ b/src/org/exist/launcher/SplashScreen.java @@ -91,7 +91,7 @@ public SplashScreen(Launcher launcher) { getContentPane().add(statusLabel, BorderLayout.SOUTH); // show it setSize(new Dimension(icon.getIconWidth() + 40, icon.getIconHeight() + 50)); - //pack(); + pack(); this.setLocationRelativeTo(null); setVisible(true); }