summaryrefslogtreecommitdiffstats
path: root/iw/account.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-14 22:46:02 +0000
committerMatt Wilson <msw@redhat.com>1999-09-14 22:46:02 +0000
commit02626424a982cd16518d53875366a49059dbe74e (patch)
tree4b1f83b6ec565edefaddc324d8ac42669e6330d8 /iw/account.py
parentbd17bf0eb3535fb4d1d1e8770a5a89fbb9693bc3 (diff)
downloadanaconda-02626424a982cd16518d53875366a49059dbe74e.tar.gz
anaconda-02626424a982cd16518d53875366a49059dbe74e.tar.xz
anaconda-02626424a982cd16518d53875366a49059dbe74e.zip
swapon as we find swap parts in our search
Diffstat (limited to 'iw/account.py')
-rw-r--r--iw/account.py13
1 files changed, 9 insertions, 4 deletions
diff --git a/iw/account.py b/iw/account.py
index e76605d2c..bd7de338a 100644
--- a/iw/account.py
+++ b/iw/account.py
@@ -13,10 +13,6 @@ class AccountWindow (InstallWindow):
self.todo = ics.getToDo ()
ics.setTitle (_("Account Configuration"))
ics.readHTML ("accts")
-## ics.setHTML ("<HTML><BODY>Enter a root password. The password "
-## "must be at least six characters in length."
-## "<p>The \"Next\" button will become enabled when both entry fields match."
-## "</BODY></HTML>")
def getNext (self):
if not self.__dict__.has_key("pw"): return None
@@ -116,6 +112,15 @@ class AccountWindow (InstallWindow):
self.editingUser = None
box = GtkVBox ()
+ im = self.ics.readPixmap ("root-password.png")
+ if im:
+ im.render ()
+ pix = im.make_pixmap ()
+ a = GtkAlignment ()
+ a.add (pix)
+ a.set (0.0, 0.0, 0.0, 0.0)
+ box.pack_start (a, FALSE)
+
forward = lambda widget, box=box: box.focus (DIR_TAB_FORWARD)
table = GtkTable (2, 2)