diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-09 05:30:27 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-09 05:30:27 +0000 |
commit | 5fa084f4f41a4059e79645e57ca12df5f3a06f4e (patch) | |
tree | 66fa235fc8f164e97af09a9aadfe0cba030451c2 /iw/welcome.py | |
parent | d524869112b1231d212f81eb6cbfa4667850cd1a (diff) | |
download | anaconda-5fa084f4f41a4059e79645e57ca12df5f3a06f4e.tar.gz anaconda-5fa084f4f41a4059e79645e57ca12df5f3a06f4e.tar.xz anaconda-5fa084f4f41a4059e79645e57ca12df5f3a06f4e.zip |
paths for splash
Diffstat (limited to 'iw/welcome.py')
-rw-r--r-- | iw/welcome.py | 12 |
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) |