diff options
author | Chris Lumens <clumens@redhat.com> | 2005-04-14 17:18:40 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2005-04-14 17:18:40 +0000 |
commit | 190ddfbda7a1ccafa80ba1b84d74fe9fe4647592 (patch) | |
tree | 6347268ce01bd3323aceed8448fc62715ded9f68 /iw/blpasswidget.py | |
parent | 2fa28eace89b5c97b3123255708ad6761f08ce37 (diff) | |
download | anaconda-190ddfbda7a1ccafa80ba1b84d74fe9fe4647592.tar.gz anaconda-190ddfbda7a1ccafa80ba1b84d74fe9fe4647592.tar.xz anaconda-190ddfbda7a1ccafa80ba1b84d74fe9fe4647592.zip |
Fix the WrappingLabel class so it actually wraps text. Cleaned up UI
elements on the bootloader configuration screen so elements no longer
disappear off the bottom of the screen in certain languages (#153071,
#154786).
Diffstat (limited to 'iw/blpasswidget.py')
-rw-r--r-- | iw/blpasswidget.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/iw/blpasswidget.py b/iw/blpasswidget.py index 985cf6cbf..a1b823982 100644 --- a/iw/blpasswidget.py +++ b/iw/blpasswidget.py @@ -52,14 +52,11 @@ class BootloaderPasswordWidget: self.setPassLabel() box = gtk.HBox(False, 5) - box.pack_start(self.usePassCb) - box.pack_start(self.passButton) + box.pack_start(self.usePassCb, False) + box.pack_start(self.passButton, False) vbox.pack_start(box, False) - alignment = gtk.Alignment() - alignment.set(0.1, 0, 0, 0) - alignment.add(vbox) - self.widget = alignment + self.widget = vbox def getWidget(self): return self.widget |