diff options
author | Matt Wilson <msw@redhat.com> | 2001-07-25 02:19:48 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-07-25 02:19:48 +0000 |
commit | 98f8de10a0032f3c200497970303e3b0631124fc (patch) | |
tree | 4c3962f1364dd9bc10203b90b1b7d77a3f9af696 /iw/congrats_gui.py | |
parent | 1c9ff234c13bf6fd5486033d17c199accadec49d (diff) | |
download | anaconda-98f8de10a0032f3c200497970303e3b0631124fc.tar.gz anaconda-98f8de10a0032f3c200497970303e3b0631124fc.tar.xz anaconda-98f8de10a0032f3c200497970303e3b0631124fc.zip |
Remove all python use of Imlib; replace with gdk pixbuf
Diffstat (limited to 'iw/congrats_gui.py')
-rw-r--r-- | iw/congrats_gui.py | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/iw/congrats_gui.py b/iw/congrats_gui.py index c57d0cf62..8a661ab58 100644 --- a/iw/congrats_gui.py +++ b/iw/congrats_gui.py @@ -22,10 +22,8 @@ class CongratulationWindow (InstallWindow): hbox = GtkHBox (TRUE, 5) - im = self.ics.readPixmap ("done.png") - if im: - im.render () - pix = im.make_pixmap () + pix = self.ics.readPixmap ("done.png") + if pix: a = GtkAlignment () a.add (pix) a.set (0.5, 0.5, 1.0, 1.0) @@ -73,10 +71,8 @@ class ReconfigCongratulationWindow (InstallWindow): hbox = GtkHBox (TRUE, 5) - im = self.ics.readPixmap ("done.png") - if im: - im.render () - pix = im.make_pixmap () + pix = self.ics.readPixmap ("done.png") + if pix: a = GtkAlignment () a.add (pix) a.set (0.5, 0.5, 1.0, 1.0) |