summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-01-08 17:36:59 +0000
committerMatt Wilson <msw@redhat.com>2001-01-08 17:36:59 +0000
commit520c9cfbd7d7a21b678aff0415b0a7fdafe3e945 (patch)
tree382889a5857fa058831873a02d4639a239fc20a8
parent169194d5ea240b67a2c59fbf5f2fa6d06fa3b510 (diff)
downloadanaconda-520c9cfbd7d7a21b678aff0415b0a7fdafe3e945.tar.gz
anaconda-520c9cfbd7d7a21b678aff0415b0a7fdafe3e945.tar.xz
anaconda-520c9cfbd7d7a21b678aff0415b0a7fdafe3e945.zip
pack the progress bar in a nicer way
-rwxr-xr-xgui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui.py b/gui.py
index 66f6ee83d..b6d8b0249 100755
--- a/gui.py
+++ b/gui.py
@@ -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)