diff options
author | Chris Lumens <clumens@redhat.com> | 2005-07-07 20:53:50 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2005-07-07 20:53:50 +0000 |
commit | d018527d71ee7f53e0be0e59c932fb93d01be743 (patch) | |
tree | 3622d7eaa4af1e4d9a5059925f0784553fb46de1 | |
parent | 3df37fa9ee85f001449cbbadadac45c73dafb454 (diff) | |
download | anaconda-d018527d71ee7f53e0be0e59c932fb93d01be743.tar.gz anaconda-d018527d71ee7f53e0be0e59c932fb93d01be743.tar.xz anaconda-d018527d71ee7f53e0be0e59c932fb93d01be743.zip |
Work around pygtk progress table bug.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | iw/progress_gui.py | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2005-07-07 Chris Lumens <clumens@redhat.com> + + * iw/progress_gui.py (InstallProgressWindow_NEW.getScreen): Work + around pygtk progress table bug. + 2005-07-07 Paul Nasrat <pnasrat@redhat.com> * anaconda.spec: Bump version. diff --git a/iw/progress_gui.py b/iw/progress_gui.py index e11749cde..73a9b83e7 100644 --- a/iw/progress_gui.py +++ b/iw/progress_gui.py @@ -332,7 +332,7 @@ class InstallProgressWindow_NEW (InstallWindow): self.totalProgress = gtk.ProgressBar () progressTable = gtk.Table (2, 2, False) - progressTable.attach (self.totalProgress, 1, 2, 0, 1, ypadding=2) + progressTable.attach (self.totalProgress, 1, 2, 0, 1, xpadding=0, ypadding=2) # label = gtk.Label (_("Package Progress: ")) # label.set_alignment (1.0, 0.5) |