diff options
author | Matt Wilson <msw@redhat.com> | 2001-01-08 17:36:59 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-01-08 17:36:59 +0000 |
commit | 520c9cfbd7d7a21b678aff0415b0a7fdafe3e945 (patch) | |
tree | 382889a5857fa058831873a02d4639a239fc20a8 | |
parent | 169194d5ea240b67a2c59fbf5f2fa6d06fa3b510 (diff) | |
download | anaconda-520c9cfbd7d7a21b678aff0415b0a7fdafe3e945.tar.gz anaconda-520c9cfbd7d7a21b678aff0415b0a7fdafe3e945.tar.xz anaconda-520c9cfbd7d7a21b678aff0415b0a7fdafe3e945.zip |
pack the progress bar in a nicer way
-rwxr-xr-x | gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -123,11 +123,11 @@ class ProgressWindow: label = GtkLabel (_(text)) label.set_line_wrap (TRUE) label.set_alignment (0.0, 0.5) - box.pack_start (label) + box.pack_start (label, FALSE) self.total = total self.progress = GtkProgressBar () - box.pack_start (self.progress) + box.pack_start (self.progress, TRUE) frame = GtkFrame () frame.set_shadow_type (SHADOW_OUT) |