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/confirm_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/confirm_gui.py')
-rw-r--r-- | iw/confirm_gui.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/iw/confirm_gui.py b/iw/confirm_gui.py index e302c047f..95c62527c 100644 --- a/iw/confirm_gui.py +++ b/iw/confirm_gui.py @@ -11,10 +11,8 @@ class ConfirmWindow (InstallWindow): hbox = GtkHBox (TRUE, 5) box = GtkVBox (FALSE, 5) - im = self.ics.readPixmap ("about-to-install.png") - if im: - im.render () - pix = im.make_pixmap () + pix = self.ics.readPixmap ("about-to-install.png") + if pix: a = GtkAlignment () a.add (pix) a.set (0.5, 0.5, 1.0, 1.0) |