summaryrefslogtreecommitdiffstats
path: root/iw/welcome.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-09 05:30:27 +0000
committerMatt Wilson <msw@redhat.com>1999-09-09 05:30:27 +0000
commit5fa084f4f41a4059e79645e57ca12df5f3a06f4e (patch)
tree66fa235fc8f164e97af09a9aadfe0cba030451c2 /iw/welcome.py
parentd524869112b1231d212f81eb6cbfa4667850cd1a (diff)
downloadanaconda-5fa084f4f41a4059e79645e57ca12df5f3a06f4e.tar.gz
anaconda-5fa084f4f41a4059e79645e57ca12df5f3a06f4e.tar.xz
anaconda-5fa084f4f41a4059e79645e57ca12df5f3a06f4e.zip
paths for splash
Diffstat (limited to 'iw/welcome.py')
-rw-r--r--iw/welcome.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/iw/welcome.py b/iw/welcome.py
index 55c22d45a..b8cc1811a 100644
--- a/iw/welcome.py
+++ b/iw/welcome.py
@@ -24,11 +24,17 @@ class WelcomeWindow (InstallWindow):
def getScreen (self):
box = GtkVBox (FALSE, 10)
+ im = None
try:
- im = GdkImlib.Image ("splash.png")
+ print "foo"
+ im = GdkImlib.Image ("/usr/share/anaconda/pixmaps/splash.png")
except:
- print "Unable to load splash.png"
- else:
+ try:
+ print "bar"
+ im = GdkImlib.Image ("pixmaps/splash.png")
+ except:
+ print "Unable to load splash.png"
+ if im:
im.render ()
pix = im.make_pixmap ()
box.pack_start (pix, TRUE, TRUE, 0)