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/account_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/account_gui.py')
-rw-r--r-- | iw/account_gui.py | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/iw/account_gui.py b/iw/account_gui.py index 0a9959118..13883524a 100644 --- a/iw/account_gui.py +++ b/iw/account_gui.py @@ -260,10 +260,8 @@ class AccountWindow (InstallWindow): box = GtkVBox () hbox = GtkHBox() - im = self.ics.readPixmap ("root-password.png") - if im: - im.render () - pix = im.make_pixmap () + pix = self.ics.readPixmap ("root-password.png") + if pix: a = GtkAlignment () a.add (pix) a.set (0.0, 0.0, 0.0, 0.0) @@ -343,10 +341,8 @@ class AccountWindow (InstallWindow): bb.pack_start (self.delete) hbox = GtkHBox() - im = self.ics.readPixmap ("users.png") - if im: - im.render () - pix = im.make_pixmap () + pix = self.ics.readPixmap ("users.png") + if pix: a = GtkAlignment () a.add (pix) a.set (0.5, 0.5, 0, 0) |