Modified means of getting the splash screen image so it works when app is run as a jar. jrg

This commit is contained in:
talisman%anamorphic.com 2001-04-04 02:57:04 +00:00
Родитель 2345e2c1c9
Коммит 0c6123d2b7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -34,7 +34,7 @@ public class Splash extends JWindow {
public Splash() {
super();
ImageIcon image = new ImageIcon("ui/images/splash.gif");
ImageIcon image = new ImageIcon(getClass().getResource("images/GrendelSplash.jpg"));
JLabel splashLabel = new JLabel(image);
getContentPane().add(splashLabel);