diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-09 05:22:46 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-09 05:22:46 +0000 |
commit | 3ab2cb6b80d6f55ff29bf07546c0fc0f2c03c4b7 (patch) | |
tree | d78ea89067d83b76d825c170ef45dca9aecb8873 /iw/welcome.py | |
parent | 91d3d396328820e5a9283f130d360cb3a65ac3ef (diff) | |
download | anaconda-3ab2cb6b80d6f55ff29bf07546c0fc0f2c03c4b7.tar.gz anaconda-3ab2cb6b80d6f55ff29bf07546c0fc0f2c03c4b7.tar.xz anaconda-3ab2cb6b80d6f55ff29bf07546c0fc0f2c03c4b7.zip |
o splash screen
o lilo 'other' entries should work
o exceptions for 'file does not exist' in iutil *exec*
o search paths for help files
o padding changes in gui
Diffstat (limited to 'iw/welcome.py')
-rw-r--r-- | iw/welcome.py | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/iw/welcome.py b/iw/welcome.py index 44971cfc2..55c22d45a 100644 --- a/iw/welcome.py +++ b/iw/welcome.py @@ -1,6 +1,7 @@ from gtk import * from iw import * from gui import _ +import GdkImlib class WelcomeWindow (InstallWindow): @@ -22,18 +23,14 @@ class WelcomeWindow (InstallWindow): def getScreen (self): - label = GtkLabel ("(insert neat logo graphic here)") - box = GtkVBox (FALSE, 10) - box.pack_start (label, TRUE, TRUE, 0) - try: - im = GdkImlib.Image ("shadowman-200.png") + im = GdkImlib.Image ("splash.png") + except: + print "Unable to load splash.png" + else: im.render () pix = im.make_pixmap () box.pack_start (pix, TRUE, TRUE, 0) - except: - print "Unable to load shadowman-200.png" - return box |