summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-25 15:57:10 +0000
committerMatt Wilson <msw@redhat.com>1999-09-25 15:57:10 +0000
commit511e952c13be64335b253e64eeedc7f76f7a8818 (patch)
tree2b4537695cbbf257f268b34da45ba13fa30e20aa /iw
parent339fef16e382f9d0c5a77edb8c2ccd35ba2ca845 (diff)
downloadanaconda-511e952c13be64335b253e64eeedc7f76f7a8818.tar.gz
anaconda-511e952c13be64335b253e64eeedc7f76f7a8818.tar.xz
anaconda-511e952c13be64335b253e64eeedc7f76f7a8818.zip
more graphics
Diffstat (limited to 'iw')
-rw-r--r--iw/congrats.py16
1 files changed, 15 insertions, 1 deletions
diff --git a/iw/congrats.py b/iw/congrats.py
index 965bd1586..19a7ee698 100644
--- a/iw/congrats.py
+++ b/iw/congrats.py
@@ -12,8 +12,20 @@ class CongratulationWindow (InstallWindow):
ics.setPrevEnabled (0)
ics.setNextButton (STOCK_PIXMAP_QUIT, _("Exit"))
ics.setNextEnabled (1)
+ ics.setHelpEnabled (FALSE)
def getScreen (self):
+ hbox = GtkHBox (TRUE, 5)
+
+ im = self.ics.readPixmap ("done.png")
+ if im:
+ im.render ()
+ pix = im.make_pixmap ()
+ a = GtkAlignment ()
+ a.add (pix)
+ a.set (0.5, 0.5, 1.0, 1.0)
+ hbox.pack_start (a, FALSE)
+
label = GtkLabel(_("Congratulations, installation is complete.\n\n"
"Remove the boot media and "
"press return to reboot. For information on fixes which are "
@@ -27,4 +39,6 @@ class CongratulationWindow (InstallWindow):
box = GtkVBox (FALSE, 10)
box.pack_start (label, TRUE, TRUE, 0)
- return box
+ hbox.pack_start (box)
+
+ return hbox