diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-26 20:48:45 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-26 20:48:45 +0000 |
commit | 680ea53f45dbab4bad450601d83ce0cd3f00289d (patch) | |
tree | fd4fd39e42c3a6a6e5b0113b24cfcd8f3708ca21 /iw/account.py | |
parent | c0ed2e6e181636133737d9d96754b4fa5e6bcbcb (diff) | |
download | anaconda-680ea53f45dbab4bad450601d83ce0cd3f00289d.tar.gz anaconda-680ea53f45dbab4bad450601d83ce0cd3f00289d.tar.xz anaconda-680ea53f45dbab4bad450601d83ce0cd3f00289d.zip |
passwords can be long
Diffstat (limited to 'iw/account.py')
-rw-r--r-- | iw/account.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/account.py b/iw/account.py index 693d32068..d54bc0873 100644 --- a/iw/account.py +++ b/iw/account.py @@ -137,7 +137,7 @@ class AccountWindow (InstallWindow): self.pw.connect ("activate", forward) self.pw.connect ("changed", self.rootPasswordsMatch) self.pw.set_visibility (FALSE) - self.confirm = GtkEntry (8) + self.confirm = GtkEntry (128) self.confirm.connect ("activate", forward) self.confirm.set_visibility (FALSE) self.confirm.connect ("changed", self.rootPasswordsMatch) |