summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2008-04-24 18:39:27 -0500
committerDavid Lehman <dlehman@redhat.com>2008-04-25 14:29:10 -0500
commit2acead0cc66243f6dfb10e9ccf9476ca57f8819d (patch)
treee76027c429d30480e9a528f01e4a59cf42dd892b /text.py
parent2c65d67d6efe3f3aac4bd278c10adca03bb2d308 (diff)
downloadanaconda-2acead0cc66243f6dfb10e9ccf9476ca57f8819d.tar.gz
anaconda-2acead0cc66243f6dfb10e9ccf9476ca57f8819d.tar.xz
anaconda-2acead0cc66243f6dfb10e9ccf9476ca57f8819d.zip
Make the LUKS passphrase prompt fit on an 80x25 screen. (#442100)
Diffstat (limited to 'text.py')
-rw-r--r--text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/text.py b/text.py
index db5fcb5cb..cfa989f8b 100644
--- a/text.py
+++ b/text.py
@@ -285,7 +285,7 @@ class PassphraseEntryWindow:
txt = TextboxReflowed(65, self.txt)
toplevel.add(txt, 0, 0)
- passphraseentry = Entry(128, password = 1)
+ passphraseentry = Entry(60, password = 1)
toplevel.add(passphraseentry, 0, 1, (0,0,0,1))
globalcheckbox = Checkbox(_("This is a global passphrase"))