diff options
author | Chris Lumens <clumens@redhat.com> | 2007-01-30 18:54:05 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2007-01-30 18:54:05 +0000 |
commit | c23816d5ea246957983736cc05747431009b7cd8 (patch) | |
tree | 613e8020d9c746da6abc09859daf468cd9579143 | |
parent | 4ac8263a59166e29aeec21a781f95721d583532d (diff) | |
download | anaconda-c23816d5ea246957983736cc05747431009b7cd8.tar.gz anaconda-c23816d5ea246957983736cc05747431009b7cd8.tar.xz anaconda-c23816d5ea246957983736cc05747431009b7cd8.zip |
Wrap the label if it's too long (#225444).
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | iw/timezone_gui.py | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2007-01-30 Chris Lumens <clumens@redhat.com> + + * iw/timezone_gui.py (AnacondaTZMap.timezone_list_init): Wrap the + label if it's too long (#225444). + 2007-01-29 Bill Nottingham <notting@redhat.com> * packages.py (betaNagScreen): Add 'Fedora' -> 'Fedora Core' mapping. diff --git a/iw/timezone_gui.py b/iw/timezone_gui.py index 1c9e4c62d..a31877dd9 100644 --- a/iw/timezone_gui.py +++ b/iw/timezone_gui.py @@ -181,6 +181,7 @@ class AnacondaTZMap(TimezoneMap): # Label for the currently pointed at/selected city. self.label = gtk.Label() + self.label.set_line_wrap(True) self.hbox.pack_start(self.label, True, True, padding=5) self.pack_start(self.hbox, False, False) |