summaryrefslogtreecommitdiffstats
path: root/iw/account_gui.py
diff options
context:
space:
mode:
authorbfox <bfox>2001-08-21 18:04:20 +0000
committerbfox <bfox>2001-08-21 18:04:20 +0000
commite462034cd0abb5610e4d9648076272eab0a83d36 (patch)
treed9155cdb7b9ae345cbe72414fded9d44a31e2710 /iw/account_gui.py
parentb68edc4848b440ca8f5042c04de8167303c95d83 (diff)
downloadanaconda-e462034cd0abb5610e4d9648076272eab0a83d36.tar.gz
anaconda-e462034cd0abb5610e4d9648076272eab0a83d36.tar.xz
anaconda-e462034cd0abb5610e4d9648076272eab0a83d36.zip
fix text wrapping for lowres mode
Diffstat (limited to 'iw/account_gui.py')
-rw-r--r--iw/account_gui.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/iw/account_gui.py b/iw/account_gui.py
index 06e98d813..191ccb189 100644
--- a/iw/account_gui.py
+++ b/iw/account_gui.py
@@ -271,6 +271,9 @@ class AccountWindow (InstallWindow):
hbox.pack_start (a, FALSE)
label = GtkLabel (_("Enter the password for the root user (administrator) of this system."))
+ label.set_line_wrap(TRUE)
+ label.set_usize(350, -1)
+
a = GtkAlignment ()
a.add (label)
a.set (0.0, 0.5, 0.0, 0.0)
@@ -359,7 +362,7 @@ class AccountWindow (InstallWindow):
"system. Use the <Add> button to enter additional "
"user accounts."))
label.set_line_wrap(TRUE)
- label.set_usize(400, -1)
+ label.set_usize(350, -1)
a.add(label)
hbox.pack_start(a, FALSE)