diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-02-05 23:21:07 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-02-05 23:21:07 +0000 |
commit | e9502e3df6620a81870990e6f69b4b0df575e851 (patch) | |
tree | 9eca2cdd82da4d5ae347c99d2a9911079d7a8fee | |
parent | 705f7ea03703e5bd38d221c913f77816dbbc178f (diff) | |
download | anaconda-e9502e3df6620a81870990e6f69b4b0df575e851.tar.gz anaconda-e9502e3df6620a81870990e6f69b4b0df575e851.tar.xz anaconda-e9502e3df6620a81870990e6f69b4b0df575e851.zip |
make the username field only 16 characters so it's not longer than the fullname (#59342)
-rw-r--r-- | textw/userauth_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/userauth_text.py b/textw/userauth_text.py index f6ce53335..6c6660251 100644 --- a/textw/userauth_text.py +++ b/textw/userauth_text.py @@ -80,7 +80,7 @@ class UsersWindow: 'mailnull', 'rpm', 'ident', 'rpc', 'rpcuser', 'radvd', 'xfs', 'gdm', 'apache', 'squid'] - username = Entry (32, user["id"], scroll=0) + username = Entry (16, user["id"], scroll=0) currentid = user["id"] pass1 = Entry (10, user["password"], password = 1) pass2 = Entry (10, user["password"], password = 1) |